23 lines
620 B
C#
23 lines
620 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataDomain
|
|
{
|
|
public class Person
|
|
{
|
|
public int Id { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string NickName { get; set; }
|
|
public String Born { get; set; }
|
|
public string Comments { get; set; }
|
|
public int HomeAddress { get; set; }
|
|
public int InvoiceAddress { get; set; }
|
|
public int ClearingNo { get; set; }
|
|
public long AccountNo { get; set; }
|
|
}
|
|
}
|