26 lines
588 B
C#
26 lines
588 B
C#
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; }
|
|
}
|
|
}
|