Danishathugging's picture
Sync from GitHub via hub-sync
6db0915 verified
Raw
History Blame Contribute Delete
346 Bytes
namespace ECommerce.Model.ValueObjects;
public record Address
{
public string Street { get; init; } = string.Empty;
public string City { get; init; } = string.Empty;
public string State { get; init; } = string.Empty;
public string ZipCode { get; init; } = string.Empty;
public string Country { get; init; } = string.Empty;
}