14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
import * as plugins from '../plugins.js';
|
|
import { type IBillingPlan } from './billingplan.js';
|
|
import { type IRole } from './role.js';
|
|
|
|
export interface IOrganization {
|
|
id: string;
|
|
data: {
|
|
name: string;
|
|
slug: string;
|
|
billingPlanId: string;
|
|
roleIds: string[];
|
|
};
|
|
}
|