import { GuidValue, Identity, UserIdentity } from "@omnia/fx-models"; import { ParticipantType } from "./Enums"; export interface Participant { id?: GuidValue; eventId?: GuidValue; loginName?: UserIdentity; name?: string; email?: string; phone?: string; comment?: string; previousCapacity?: number; capacity?: number; pageId?: number; participantType?: ParticipantType; statusResponse?: string; statusTime?: Date; createdBy?: Identity; modifiedBy?: Identity; outlookEventId?: string; eventName?: string; startDate?: Date; eventTimeZoneName?: string; eventRegisteredCapacity?: number; } export interface ParticipantStatusModel { id?: GuidValue; statusResponse?: string; statusTime?: Date; } export interface PartipantColumn { value: string; width?: string; text: string; sortable: boolean; align: string; }