Files
2026-05-06 15:04:33 +00:00

15 lines
356 B
TypeScript

import * as plugins from '../plugins.js';
import { type IBillingPlan } from './billingplan.js';
import { type IOrgRoleDefinition, type IRole } from './role.js';
export interface IOrganization {
id: string;
data: {
name: string;
slug: string;
billingPlanId: string;
roleIds: string[];
roleDefinitions?: IOrgRoleDefinition[];
};
}