mirror of
https://github.com/immich-app/immich.git
synced 2026-02-11 19:38:54 +03:00
14 lines
240 B
TypeScript
14 lines
240 B
TypeScript
import { IsString } from 'class-validator';
|
|
|
|
export class TestEmailResponseDto {
|
|
messageId!: string;
|
|
}
|
|
export class TemplateResponseDto {
|
|
name!: string;
|
|
html!: string;
|
|
}
|
|
export class TemplateDto {
|
|
@IsString()
|
|
template!: string;
|
|
}
|