ekangularbasetest3
Version:
Authentication service for usermanagement(oidc client)
33 lines (29 loc) • 701 B
text/typescript
import { RequireInteractiveControl } from "./Interactive Component/RequireInteractiveControl";
export interface SystemSetting
{
id: string;
name: string;
value: string;
description: string;
};
export class SystemSettingClass implements SystemSetting,RequireInteractiveControl
{
isSelected: boolean;
description: string;
name: string;
value: string;
isLocked: boolean;
id: string;
};
export namespace SystemSettingFunc {
export function empty(): SystemSettingClass {
return {
isSelected: false,
isLocked: false,
id: "",
name: "",
value: "",
description: ""
}
}
}