23 lines
1.1 KiB
C#
23 lines
1.1 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Enums.ManualEnums.ImportExport
|
|
{
|
|
public enum TantargyfelosztasImportTipusEnum
|
|
{
|
|
[Display(Name = nameof(ImportExportTantargyfelosztasResource.ImportTipusEgyszeru), ResourceType = typeof(ImportExportTantargyfelosztasResource))]
|
|
EgyszeruImport = 0,
|
|
|
|
[Display(Name = nameof(ImportExportTantargyfelosztasResource.ImportTipusKereszttablas), ResourceType = typeof(ImportExportTantargyfelosztasResource))]
|
|
KereszttablasImport = 1,
|
|
|
|
[Display(Name = nameof(ImportExportTantargyfelosztasResource.ImportTipusKereszttablasOsztalyOszlopokkal), ResourceType = typeof(ImportExportTantargyfelosztasResource))]
|
|
KereszttablasOsztalyOszlopokkalImport = 2,
|
|
|
|
[Display(Name = nameof(ImportExportTantargyfelosztasResource.ImportTipusFeladatfelosztas), ResourceType = typeof(ImportExportTantargyfelosztasResource))]
|
|
FeladatfelosztasImport = 3,
|
|
|
|
[Display(Name = nameof(ImportExportTantargyfelosztasResource.ImportTipusAsc), ResourceType = typeof(ImportExportTantargyfelosztasResource))]
|
|
AscImport = 4
|
|
}
|
|
}
|