Files
app/ts_interfaces/data/property.ts
T

13 lines
275 B
TypeScript
Raw Normal View History

import * as plugins from '../plugins.js';
import { type IRole } from './role.js';
2024-09-29 13:56:38 +02:00
export interface ISubOrgProperty {
name: string;
domain: string;
roles: IRole[];
/**
* contains the ids of all the apps that show the property
*/
attributedAppIds: string[];
}