export interface IOrderIndoorV3 {
    deliveryDateTime: Date;
    mode: 'DEFAULT' | 'TABLE' | 'TAB';
    preferential: boolean;
    table: string;
    tab: string;
}
