17 lines
515 B
C#
17 lines
515 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
namespace Kreta.Web.Areas.Tanulo.Models
|
|
{
|
|
public class TanarNemTanitottTanulokSearchModel
|
|
{
|
|
public TanarNemTanitottTanulokSearchModel()
|
|
{
|
|
EnableRowFunctions = true;
|
|
}
|
|
|
|
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
|
public int? OsztalyCsoportID { get; set; }
|
|
|
|
public bool EnableRowFunctions { get; set; }
|
|
}
|
|
}
|