This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,26 @@
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; }
}
}