reserves module
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { IsNotEmpty, IsUUID } from 'class-validator';
|
||||
|
||||
export class CreateReserveItemDto {
|
||||
@IsUUID()
|
||||
@IsNotEmpty()
|
||||
serviceId: string;
|
||||
|
||||
@IsUUID()
|
||||
@IsNotEmpty()
|
||||
serviceSkillId: string;
|
||||
}
|
||||
Reference in New Issue
Block a user