/**
 * **시작 지점과 종료 지점이 모두 있는 기간 범위**
 */
export type OfferPeriodRangeFromTo = {
    /**
     * **시작 시점**
     */
    from: string;
    /**
     * **종료 지점**
     */
    to: string;
};
