38 lines
1 KiB
C#
38 lines
1 KiB
C#
using Kreta.BusinessLogic.Classes;
|
|
using Kreta.Enums.ManualEnums.ImportExport;
|
|
using Kreta.Web.Security;
|
|
|
|
namespace Kreta.Web.Areas.ImportExport.Models.CommonModels
|
|
{
|
|
public class CimImportItemModel
|
|
{
|
|
public string FelhasznaloElotag { get; set; }
|
|
|
|
public string FelhasznaloVezeteknev { get; set; }
|
|
|
|
public string FelhasznaloKeresztnev { get; set; }
|
|
|
|
public string GondviseloNev { get; set; }
|
|
|
|
public string GondviseloRokonsagiFokNev { get; set; }
|
|
|
|
public string TipusNev { get; set; }
|
|
|
|
public string Iranyitoszam { get; set; }
|
|
|
|
public string Telepules { get; set; }
|
|
|
|
public string Kozterulet { get; set; }
|
|
|
|
public string KozteruletJellegNev { get; set; }
|
|
|
|
public string Hazszam { get; set; }
|
|
|
|
public string Emelet { get; set; }
|
|
|
|
public string Ajto { get; set; }
|
|
|
|
public int Operation { get; set; }
|
|
public string OperationText => Operation.GetDisplayName<ImportItemOperationEnum>(ClaimData.SelectedTanevID.Value);
|
|
}
|
|
}
|