This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
@@ -0,0 +1,25 @@
using System;
namespace Kreta.Ellenorzo.Domain.VN.Felhasznalo.Gondviselo
{
public class GondviseloAdatokResponse
{
public string Elotag { get; set; }
public string Vezeteknev { get; set; }
public string SzuletesiVezeteknev { get; set; }
public string Utonev { get; set; }
public string SzuletesiUtonev { get; set; }
public string AnyjaVezeteknev { get; set; }
public string AnyjaUtonev { get; set; }
public string SzuletesiHely { get; set; }
public DateTime? SzuletesiDatum { get; set; }
}
}