Files
privacy.sexy/src/domain/IScript.ts
2020-01-06 20:02:12 +01:00

10 lines
326 B
TypeScript

import { IEntity } from './../infrastructure/Entity/IEntity';
import { IDocumentable } from './IDocumentable';
export interface IScript extends IEntity<string>, IDocumentable {
readonly name: string;
readonly code: string;
readonly isRecommended: boolean;
readonly documentationUrls: ReadonlyArray<string>;
}