14 lines
516 B
C#
14 lines
516 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Tanulo.Models
|
|
{
|
|
public class TanarNemTanitottTanulokStartPopUpModel
|
|
{
|
|
[Display(Name = nameof(TanuloResource.FoglalkozasTipus), ResourceType = typeof(TanuloResource))]
|
|
public int? FoglalkozasTipusPopUp { get; set; }
|
|
|
|
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
|
public int? FoglalkozasPopUp { get; set; }
|
|
}
|
|
}
|