Add project files.
This commit is contained in:
15
LoadStockDbFromTrans/models/Person.cs
Normal file
15
LoadStockDbFromTrans/models/Person.cs
Normal file
@ -0,0 +1,15 @@
|
||||
namespace LoadStockDbFromTrans.models;
|
||||
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user