import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty } from 'class-validator';

export class UpdateWeekClosedDto {
  @ApiProperty()
  @IsNotEmpty()
  saturdayServiceClosed: boolean;

  @ApiProperty()
  @IsNotEmpty()
  sundayServiceClosed: boolean;

  @ApiProperty()
  @IsNotEmpty()
  mondayServiceClosed: boolean;

  @ApiProperty()
  @IsNotEmpty()
  tuesdayServiceClosed: boolean;

  @ApiProperty()
  @IsNotEmpty()
  wednesdayServiceClosed: boolean;

  @ApiProperty()
  @IsNotEmpty()
  thursdayServiceClosed: boolean;

  @ApiProperty()
  @IsNotEmpty()
  fridayServiceClosed: boolean;
}
