Spaces:
Running
Running
| 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; | |
| } | |