8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class SystemConfigStorageTemplateDto {
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
template!: string;
|
|
}
|