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

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; }
}
}