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