Files
app/ts_interfaces/data/loint-reception.organization.ts
T

14 lines
335 B
TypeScript
Raw Normal View History

2024-09-29 13:56:38 +02:00
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[];
};
}