mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-17 04:33:15 +02:00
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
import { IsOptional, IsString } from "class-validator";
|
|
|
|
export class SharePasswordDto {
|
|
@IsString()
|
|
@IsOptional()
|
|
password: string;
|
|
}
|