| 4 | namespace API.Entities; |
| 5 | |
| 6 | public class Address |
| 7 | { |
| 8 | [JsonIgnore] |
| 9 | public int Id { get; set; } |
| 10 | public required string Name { get; set; } |
| 11 | public required string Line1 { get; set; } |
| 12 | public string? Line2 { get; set; } |
| 13 | public required string City { get; set; } |
| 14 | public required string State { get; set; } |
| 15 | |
| 16 | [JsonPropertyName("postal_code")] |
| 17 | public required string PostalCode { get; set; } |
| 18 | public required string Country { get; set; } |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected