22 lines
711 B
C#
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; }
|
|
}
|
|
}
|