21 lines
740 B
C#
21 lines
740 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
using Kreta.Web.Attributes;
|
|
|
|
namespace Kreta.Web.Areas.TanuloErtekeles.Models
|
|
{
|
|
public class NaploEllenorzesKeresoModel
|
|
{
|
|
[Display(Name = nameof(OsztalyCsoportResource.EllatottKoznevelesiFeladatTipus), ResourceType = typeof(OsztalyCsoportResource))]
|
|
public int? FeladatKategoriaId { get; set; }
|
|
|
|
[KretaDisplayName(330)] //Osztály
|
|
public int? OsztalyId { get; set; }
|
|
|
|
[KretaDisplayName(350)] //Osztály
|
|
public int HetSorszama { get; set; }
|
|
|
|
[Display(Name = nameof(CommonResource.Feladatellatasihely), ResourceType = typeof(CommonResource))]
|
|
public int? FeladatEllatasiHelyId { get; set; }
|
|
}
|
|
}
|