namespace Contracts { public record StreetDto(Guid Id, string Name, List HouseNumbers, int Index, int OkatoCode, int TaxCode, Guid CityId); public record StreetDtoForCreate(string Name, List HouseNumbers, int Index, int OkatoCode, int TaxCode, Guid CityId); public record StreetDtoForUpdate(string Name, List HouseNumbers, int Index, int OkatoCode, int TaxCode, Guid CityId); }