@churchapps/helpers
Version:
Library of helper functions not specific to any one ChurchApps project or framework.
24 lines • 629 B
TypeScript
import { EventInterface } from "./Content.js";
export interface RegistrationInterface {
id?: string;
churchId?: string;
eventId?: string;
personId?: string;
householdId?: string;
status?: string;
formSubmissionId?: string;
notes?: string;
registeredDate?: Date;
cancelledDate?: Date;
members?: RegistrationMemberInterface[];
event?: EventInterface;
}
export interface RegistrationMemberInterface {
id?: string;
churchId?: string;
registrationId?: string;
personId?: string;
firstName?: string;
lastName?: string;
}
//# sourceMappingURL=Registration.d.ts.map