26 lines
1 KiB
C#
26 lines
1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Eugyintezes.Domain.Model.Dto
|
|
{
|
|
public class GondviseloAdatokDto
|
|
{
|
|
public int KretaAzonosito { get; set; }
|
|
public string GondviseloNev { get; set; }
|
|
public string EmailCim { get; set; }
|
|
public int TanuloId { get; set; }
|
|
public string TanuloNev { get; set; }
|
|
public string TanuloOktatasiAzonosito { get; set; }
|
|
public List<OsztalyDto> Osztalyok { get; set; }
|
|
public string RokonsagiFok { get; set; }
|
|
public bool IsTorvenyesKepviselo { get; set; }
|
|
public int? SZMKOsztalyHelyettesKretaAzonosito { get; set; }
|
|
public int? SZMKOsztalyKretaAzonosito { get; set; }
|
|
public bool IsSZMK { get; set; }
|
|
public string SZMKOsztaly { get; set; }
|
|
public string SZMKOsztalyHelyettes { get; set; }
|
|
public bool IsSZMKHelyettes { get; set; }
|
|
public string EgyediAzonosito { get; set; }
|
|
public Guid IdpEgyediAzonosito { get; set; }
|
|
}
|
|
}
|