19 lines
437 B
C#
19 lines
437 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataDomain
|
|
{
|
|
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; }
|
|
}
|
|
}
|