export interface Setting {
    propName: string;
    value?: string;
    encrypted: boolean;
}
export interface ServerStatus {
    success: boolean;
    hasAdvancedLicense: boolean;
}
