init
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.Resources;
|
||||
|
||||
namespace Kreta.Web.Areas.Adminisztracio.Models
|
||||
{
|
||||
public class DiakolimpiaSearchModel
|
||||
{
|
||||
[Display(Name = nameof(AdminisztracioResource.Nev), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string SearchNev { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.SzuletesiDatum), ResourceType = typeof(AdminisztracioResource))]
|
||||
public DateTime? SearchSzuletesiDatumtol { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.SzuletesiDatum), ResourceType = typeof(AdminisztracioResource))]
|
||||
public DateTime? SearchSzuletesiDatumig { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.AnyjaNeve), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string SearchAnyjaNeve { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.Osztaly), ResourceType = typeof(AdminisztracioResource))]
|
||||
public int? SearchOsztalya { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.OktatasiAzonosito), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string SearchOktatasiAzonosito { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user