using Connected.Data; namespace Contacts.Types.Addresses; public interface IAddress : IPrimaryKey { int PostalCode { get; init; } string Street { get; init; } string Number { get; init; } }