mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-17 16:44:49 -04:00
13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { IsString } from 'class-validator';
|
|
|
|
export class LoginDto {
|
|
@IsString()
|
|
username: string;
|
|
@IsString()
|
|
password: string;
|
|
}
|