15 lines
499 B
C#
15 lines
499 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Enums.ManualEnums
|
|
{
|
|
public enum JogviszonyStatuszEnum
|
|
{
|
|
[Display(Name = nameof(TanuloResource.Aktiv), ResourceType = typeof(TanuloResource))]
|
|
Aktiv = 0,
|
|
[Display(Name = nameof(TanuloResource.Lezart), ResourceType = typeof(TanuloResource))]
|
|
Lezart = 1,
|
|
[Display(Name = nameof(TanuloResource.Mind), ResourceType = typeof(TanuloResource))]
|
|
Mind = 2,
|
|
}
|
|
}
|