kreta/Kreta.DataAccessManual/ParameterClasses/FelmentesSearchPco.cs
2024-03-13 00:33:46 +01:00

27 lines
1.1 KiB
C#

using System;
namespace Kreta.DataAccessManual.ParameterClasses
{
public class FelmentesSearchPco
{
public int? ID { get; set; }
public string TanuloNeve { get; set; }
public int? TanuloOsztalyId { get; set; }
public int? TantargyId { get; set; }
public DateTime? KezdeteDateFrom { get; set; }
public DateTime? KezdeteDateTo { get; set; }
public DateTime? VegeDateFrom { get; set; }
public DateTime? VegeDateTo { get; set; }
public int? IsTanoraLatogatasaAloli { get; set; }
public int? IsErtekelesAloli { get; set; }
public int? IsSzovegesenErtekelheto { get; set; }
public string FelmentesOka { get; set; }
public DateTime? RogzitesDateFrom { get; set; }
public DateTime? RogzitesDateTo { get; set; }
public string RogzitoNeve { get; set; }
public DateTime? ModositasDateFrom { get; set; }
public DateTime? ModositasDateTo { get; set; }
public string ModositoNeve { get; set; }
public bool? Torolt { get; set; }
}
}