12 lines
176 B
TypeScript
12 lines
176 B
TypeScript
|
export class Entity {
|
||
|
_id: string;
|
||
|
pid: string;
|
||
|
name: string;
|
||
|
isEnabled: boolean;
|
||
|
}
|
||
|
|
||
|
export interface CheckEntity {
|
||
|
entity: Entity;
|
||
|
checked: boolean;
|
||
|
}
|