All checks were successful
Publish NuGet Packages / build-and-publish (push) Successful in 29s
11 lines
321 B
C#
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; }
|
|
} |