Files
cfw-autumn/shared/models/orgModels/fullOrgModel.ts
2026-05-12 00:05:48 +08:00

7 lines
182 B
TypeScript

import type { Feature } from "../featureModels/featureModels.js";
import type { Organization } from "./orgTable.js";
export type FullOrg = Organization & {
features: Feature[];
};