import { ExceptionDate } from './exception-date';

export default interface AvailabilityException {
  comment?: object;
  start: ExceptionDate;
  end: ExceptionDate;
  available: boolean;
}
