import { HalResource } from 'hal-types';
export interface ISystemProperty extends HalResource {
    enabled: boolean;
    key: string;
    title: string;
    description: string;
    value: string;
    type: string;
    dataType: string;
    created?: string;
    updated?: string;
}
