namespace ConsoleStarter; public class TestPerson { public int Id { get; set; } public int? Idn { get; set; } public uint uit { get; set; } public byte b { get; set; } public sbyte sb { get; set; } public byte[] bs { get; set; } public string s { get; set; } public string[] ss { get; set; } public short st { get; set; } public ushort ust { get; set; } public Int16 I16 { get; set; } public UInt16 UI16 { get; set; } public Int32 I32 { get; set; } public UInt32 UI32 { get; set; } public Int64 I64 { get; set; } public UInt64 UI64 { get; set; } public long lg { get; set; } public ulong ulg { get; set; } public float ft { get; set; } public double de { get; set; } public bool bl { get; set; } public bool[] bls { get; set; } }