21 lines
616 B
C#
21 lines
616 B
C#
namespace SGU.AuthBroker.Core.Profiles;
|
|
|
|
public sealed record SguAdministrativeLocationSelection(
|
|
string? StateId = null,
|
|
string? MunicipalityId = null,
|
|
string? NeighborhoodId = null,
|
|
string? StateName = null,
|
|
string? MunicipalityName = null,
|
|
string? NeighborhoodName = null,
|
|
string? PostalCode = null)
|
|
{
|
|
public bool HasValues =>
|
|
StateId is not null ||
|
|
MunicipalityId is not null ||
|
|
NeighborhoodId is not null ||
|
|
StateName is not null ||
|
|
MunicipalityName is not null ||
|
|
NeighborhoodName is not null ||
|
|
PostalCode is not null;
|
|
}
|