Files
app/ts_interfaces/data/organization.ts
T

14 lines
287 B
TypeScript
Raw Normal View History

import * as plugins from '../plugins.js';
import { type IBillingPlan } from './billingplan.js';
import { type IRole } from './role.js';
2024-09-29 13:56:38 +02:00
export interface IOrganization {
id: string;
data: {
name: string;
slug: string;
billingPlanId: string;
roleIds: string[];
};
}