MCPcopy Create free account
hub / github.com/TryCatchLearn/Restore-v2 / Address

Class Address

API/Entities/Address.cs:6–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4namespace API.Entities;
5
6public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected