Files
app/ts_interfaces/data/property.ts
T

13 lines
307 B
TypeScript
Raw Normal View History

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