mirror of https://github.com/fantasticit/think.git
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
|
export interface ISystemConfig {
|
||
|
isSystemLocked: boolean;
|
||
|
emailServiceHost: string;
|
||
|
emailServicePassword: string;
|
||
|
emailServicePort: string;
|
||
|
emailServiceUser: string;
|
||
|
}
|