kreta/Kreta.BusinessLogic/HelperClasses/JogviszonyCo.cs
2024-03-13 00:33:46 +01:00

22 lines
711 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kreta.BusinessLogic.HelperClasses
{
public class JogviszonyCo
{
public int? ID { get; set; }
public int TanuloId { get; set; }
public int? JogviszonyTipusId { get; set; }
public DateTime Kezdete { get; set; }
public DateTime? Vege { get; set; }
public int? JogviszonyKeletkezesenekJogcimeId { get; set; }
public int? JogviszonyMegszunesenekJogcimeId { get; set; }
public bool IsJogviszonyVizsgalat { get; set; }
public string Megjegyzes { get; set; }
public bool IsAktiv { get; set; }
}
}