dotnet-geo-management/Svrnty.GeoManagement.Abstractions/Abstractions/IAddress.cs
Mathias Beaulieu-Duncan c6e6b29905
All checks were successful
Publish NuGet Packages / build-and-publish (push) Successful in 29s
refactor Country to CountryCode to better reflect the value it contain
2025-10-08 11:35:23 -04:00

11 lines
321 B
C#

namespace Svrnty.GeoManagement.Abstractions.Abstractions;
public interface IAddress
{
public string Line1 { get; set; }
public string? Line2 { get; set; }
public string City { get; set; }
public string Subdivision { get; set; }
public string PostalCode { get; set; }
public string CountryCode { get; set; }
}