18 lines
341 B
C#
18 lines
341 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Prefab.Base;
|
|
|
|
/// <summary>
|
|
/// Represents the supported default cultures.
|
|
/// </summary>
|
|
public enum Culture
|
|
{
|
|
[Display(Order = 1, Name = "en-US")]
|
|
UnitedStates,
|
|
|
|
[Display(Order = 2, Name = "en-GB")]
|
|
UnitedKingdom,
|
|
|
|
[Display(Order = 2, Name = "ja-JP")]
|
|
Japan
|
|
} |