mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
12 lines
186 B
TypeScript
12 lines
186 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class AuthSigninDto {
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
password: string;
|
|
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
email: string;
|
|
}
|