2021-01-11 22:34:48 +00:00
|
|
|
// 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';
|
2021-02-02 21:04:53 +00:00
|
|
|
export * from './EventDiscount';
|
|
|
|
export * from './TicketPurchase';
|
|
|
|
export * from './Ticket';
|