export type AptlyPeriod = AptlyPeriodSchema<string, string>;
export interface AptlyPeriodSchema<ID, DATE> {
    _id: ID;
    name: string;
    open: DATE;
    close: DATE;
    override?: boolean;
}
