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

export class CreateDayClosedDto {
  @ApiProperty()
  @IsNotEmpty()
  date: string;

  @ApiProperty()
  @IsOptional()
  description: string;
}
