14 lines
423 B
C#
14 lines
423 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Enums.ManualEnums
|
|
{
|
|
public enum KeltFormatumTipusEnum
|
|
{
|
|
[Display(Name = nameof(NyomtatvanyokResource.Szammal), ResourceType = typeof(NyomtatvanyokResource))]
|
|
Szammal = 1,
|
|
|
|
[Display(Name = nameof(NyomtatvanyokResource.Betuvel), ResourceType = typeof(NyomtatvanyokResource))]
|
|
Betuvel = 2,
|
|
}
|
|
}
|