init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.BusinessLogic.Classes;
|
||||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Resources;
|
||||
|
||||
namespace Kreta.Web.Areas.KirImportExport.Models.KirImport
|
||||
{
|
||||
public class KirSzinkronOsszehasonlitasGridModel : IKretaIdentity
|
||||
{
|
||||
public string ID { get; set; }
|
||||
|
||||
[Display(Name = nameof(KirImportExportResource.KivalasztottAdat), ResourceType = typeof(KirImportExportResource))]
|
||||
public string KivalasztottAdat { get; set; }
|
||||
|
||||
[Display(Name = nameof(KirImportExportResource.AdatNeve), ResourceType = typeof(KirImportExportResource))]
|
||||
public string AdatNeve { get; set; }
|
||||
|
||||
[Display(Name = nameof(KirImportExportResource.KirAdat), ResourceType = typeof(KirImportExportResource))]
|
||||
public string KirAdat { get; set; }
|
||||
|
||||
[Display(Name = nameof(KirImportExportResource.KretaAdat), ResourceType = typeof(KirImportExportResource))]
|
||||
public string KretaAdat { get; set; }
|
||||
|
||||
public bool Valtozott { get; set; }
|
||||
|
||||
[Display(Name = nameof(KirImportExportResource.Valtozott), ResourceType = typeof(KirImportExportResource))]
|
||||
public string ValtozottString => Valtozott.GetDisplayName();
|
||||
|
||||
public string AdatAzonositoNeve { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue