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

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