2e8821efdf
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
16 lines
No EOL
398 B
TypeScript
16 lines
No EOL
398 B
TypeScript
// License: LGPL-3.0-or-later
|
|
import { IDType, HoudiniObject } from '../../common';
|
|
import Nonprofit from '..';
|
|
|
|
export default interface Event extends HoudiniObject {
|
|
end_date: Date;
|
|
name: string;
|
|
nonprofit: IDType | Nonprofit;
|
|
object: "event";
|
|
start_date: Date;
|
|
}
|
|
|
|
export * from './TicketLevel';
|
|
export * from './EventDiscount';
|
|
export * from './TicketPurchase';
|
|
export * from './Ticket'; |