11 lines
287 B
C#
11 lines
287 B
C#
namespace Svrnty.GeoManagement.Abstractions.Abstractions;
|
|
|
|
public interface IAddress
|
|
{
|
|
public string Line1 { get; }
|
|
public string? Line2 { get; }
|
|
public string City { get; }
|
|
public string Subdivision { get; }
|
|
public string PostalCode { get; }
|
|
public string Country { get; }
|
|
} |