1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +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-28 14:03:12 -04:00
2017-07-15 16:31:43 +02:00
export interface OtherConfigDTO {
Server: ThreadingConfig;
Client: ClientConfig.OtherConfig;
2017-07-15 16:31:43 +02:00
}