23 lines
553 B
C#
Raw Normal View History

namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate
{
using Microsoft.eShopOnContainers.Services.Ordering.Domain.SeedWork;
using System;
2017-01-12 17:09:23 -08:00
//(CDLTLL)
//TO DO: Need to convert this entity to a Value-Object (Address VO)
public class Address
: Entity
{
public String Street { get; set; }
public String City { get; set; }
public String State { get; set; }
public String Country { get; set; }
public String ZipCode { get; set; }
}
}