2e8821efdf
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
13 lines
354 B
TypeScript
13 lines
354 B
TypeScript
// License: LGPL-3.0-or-later
|
|
import { IDType, HoudiniObject } from '../../common';
|
|
import Nonprofit from '..';
|
|
|
|
export default interface Campaign extends HoudiniObject {
|
|
name: string;
|
|
nonprofit: IDType | Nonprofit;
|
|
object: "campaign";
|
|
}
|
|
|
|
export * from './CampaignGiftOption';
|
|
export * from './CampaignGiftPurchase';
|
|
export * from './CampaignGift';
|