10 lines
144 B
TypeScript
10 lines
144 B
TypeScript
import { IsString } from 'class-validator';
|
|
|
|
export class PrestamoDto {
|
|
@IsString()
|
|
passcode: string;
|
|
|
|
@IsString()
|
|
id_locker: string;
|
|
}
|