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

14 lines
516 B
C#

using System.ComponentModel.DataAnnotations;
using Kreta.Resources;
namespace Kreta.Web.Areas.Beiratkozas.Models
{
public class NebuloNemFelvettModel
{
public int Id { get; set; }
[Display(Name = nameof(BeiratkozasResource.Indoklas), ResourceType = typeof(BeiratkozasResource))]
[Required(ErrorMessageResourceName = nameof(BeiratkozasResource.DontesIndoklasaKotelezo), ErrorMessageResourceType = typeof(BeiratkozasResource))]
public string Indoklas { get; set; }
}
}