14 lines
455 B
C#
14 lines
455 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Adminisztracio.Models
|
|
{
|
|
public class DataForMdszModel
|
|
{
|
|
public List<int> Tanulok { get; set; }
|
|
|
|
[Required(ErrorMessageResourceName = nameof(ErrorResource.FeladhelySorszamMegadasaKotelezo), ErrorMessageResourceType = typeof(ErrorResource))]
|
|
public int? FeladhelySorszam { get; set; }
|
|
}
|
|
}
|