refactor: remove BookableSpaceDto and its index export

This commit is contained in:
faris Aljohari
2025-06-18 01:48:35 -06:00
parent 332b2f5851
commit 8c34c68ba6
2 changed files with 0 additions and 24 deletions

View File

@ -1,23 +0,0 @@
import { DaysEnum } from '@app/common/constants/days.enum';
import { IsArray, IsEnum, IsInt, IsNotEmpty, IsString } from 'class-validator';
export class BookableSpaceDto {
@IsString()
@IsNotEmpty()
public uuid: string;
@IsArray()
@IsEnum(DaysEnum, { each: true })
daysAvailable: DaysEnum[];
@IsString()
@IsNotEmpty()
startTime: string;
@IsString()
@IsNotEmpty()
endTime: string;
@IsInt()
points: number;
}

View File

@ -1 +0,0 @@
export * from './bookable-space.dto';