Init
This commit is contained in:
18
Prefab.Base/Enums.cs
Normal file
18
Prefab.Base/Enums.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user