Files

13 lines
275 B
TypeScript
Raw Permalink Normal View History

2026-05-06 15:04:33 +00:00
import * as plugins from '../plugins.js';
import { type IRole } from './role.js';
export interface ISubOrgProperty {
name: string;
domain: string;
roles: IRole[];
/**
* contains the ids of all the apps that show the property
*/
attributedAppIds: string[];
}