12 lines
299 B
C#
12 lines
299 B
C#
namespace LoadStockDbFromTrans.models;
|
|
|
|
public class Address
|
|
{
|
|
public int Id { get; set; }
|
|
public string Street { get; set; }
|
|
public string Street2 { get; set; }
|
|
public int Zipcode { get; set; }
|
|
public string Destination { get; set; }
|
|
public string Nation { get; set; }
|
|
}
|