think/packages/domains/lib/models/system.d.ts

9 lines
220 B
TypeScript
Raw Permalink Normal View History

2022-06-28 09:11:26 +00:00
export interface ISystemConfig {
isSystemLocked: boolean;
2022-06-30 06:20:38 +00:00
enableEmailVerify: boolean;
2022-06-28 09:11:26 +00:00
emailServiceHost: string;
emailServicePassword: string;
emailServicePort: string;
emailServiceUser: string;
}