-
-
Notifications
You must be signed in to change notification settings - Fork 67
MODELS Group User Model
mcverter edited this page Jul 30, 2020
·
1 revision
export interface ContactDetails {
facebookGroup?: string;
web?: { [id: string]: string }; // List of URLs
phone?: string[];
email?: string[];
}export interface ContactGroup {
/** general contact information */
general?: ContactDetails;
/** details of how those that need help can interact with the organization */
getHelp?: ContactDetails;
/** details of how those who want to help can interact with the organization */
volunteers?: ContactDetails;
}