dotnet-geo-management/Svrnty.GeoManagement.Abstractions/Abstractions/IAddress.cs

11 lines
317 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 Country { get; set; }
}