kreta/KretaWeb/Areas/Beiratkozas/Models/NebuloKirSzinkronGridModel.cs
2024-03-13 00:33:46 +01:00

18 lines
602 B
C#

using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.Beiratkozas.Models
{
public class NebuloKirSzinkronGridModel : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(BeiratkozasResource.OktatasiAzonosito), ResourceType = typeof(BeiratkozasResource))]
public string OktatasiAzonosito { get; set; }
[Display(Name = nameof(BeiratkozasResource.NebuloSzuletesiNeve), ResourceType = typeof(BeiratkozasResource))]
public string Nev { get; set; }
}
}