1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/entities/settings/OtherConfigDTO.ts

8 lines
231 B
TypeScript
Raw Normal View History

import {ClientConfig} from '../../config/public/ConfigClass';
import {ThreadingConfig} from '../../config/private/IPrivateConfig';
2018-05-29 02:03:12 +08:00
2017-07-15 22:31:43 +08:00
export interface OtherConfigDTO {
Server: ThreadingConfig;
Client: ClientConfig.OtherConfig;
2017-07-15 22:31:43 +08:00
}