UNPKG

@omnia/fx-models

Version:
16 lines (15 loc) 421 B
import { GuidValue } from "../shared"; import { IdentityProviderProperty } from "./identities"; export interface AzureAdDefaultUserProperties { id: GuidValue; displayName: string; givenName: string; surname: string; jobTitle: string; mail: string; preferredLanguage: string; userPrincipalName: string; } export interface AdProperty extends IdentityProviderProperty { adName: string; }