13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import { IsNumber, IsOptional, IsString, Length } from "class-validator";
|
|
|
|
export class ShareSecurityDTO {
|
|
@IsString()
|
|
@IsOptional()
|
|
@Length(3, 30)
|
|
password: string;
|
|
|
|
@IsNumber()
|
|
@IsOptional()
|
|
maxViews: number;
|
|
}
|