26 lines
1 KiB
C#
26 lines
1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.DataAccessManual.ParameterClasses
|
|
{
|
|
public class FelhasznaloKeresesPCO
|
|
{
|
|
public int? FeladatKategoriaId { get; set; }
|
|
public string FelhasznaloNyomtatasiNeve { get; set; }
|
|
public string FelhasznaloNev { get; set; }
|
|
public DateTime? BelepesDatumTol { get; set; }
|
|
public DateTime? BelepesDatumIg { get; set; }
|
|
public int? FelhasznaloTipusa { get; set; }
|
|
public int? JelszoValtozottE { get; set; }
|
|
public int? VanBelepese { get; set; }
|
|
public bool? GondviseloBelepesNelkul { get; set; }
|
|
public List<int> JogosultsagIdList { get; set; }
|
|
public string Tanulo { get; set; }
|
|
public int? OsztalyId { get; set; }
|
|
public int? CsokkentettGondviseloE { get; set; }
|
|
public int? GondviseloBovitettJogE { get; set; }
|
|
public int? TorvenyesKepviseloE { get; set; }
|
|
public int? FeladatEllatasiHelyId { get; set; }
|
|
public bool IsAktiv { get; set; }
|
|
}
|
|
}
|