Resolve SGU staff addresses and provision local student user
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user