26 lines
1,017 B
C#
26 lines
1,017 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Tantargy.Models
|
|
{
|
|
public class TanmenetSearchModel
|
|
{
|
|
public string NevSearch { get; set; }
|
|
public string RovidNevSearch { get; set; }
|
|
public string TemaSearch { get; set; }
|
|
public int? OraszamSearch { get; set; }
|
|
|
|
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
|
public int? OsztalyCsoportIdSearch { get; set; }
|
|
public int FeltoltoIdSearch { get; set; }
|
|
public string MegjegyzesSearch { get; set; }
|
|
|
|
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
|
|
public int? TantargyIdSearch { get; set; }
|
|
|
|
public string ControllerName { get; set; }
|
|
public string ApiControllerName { get; set; }
|
|
public string ImportControllerName { get; set; }
|
|
public bool IsFromSzervezet { get; set; }
|
|
}
|
|
}
|