reorganizing

This commit is contained in:
rubikscraft
2022-03-03 22:48:03 +01:00
parent 59c50d9236
commit 0ac46696c8
29 changed files with 42 additions and 32 deletions

View File

@@ -0,0 +1,12 @@
import { IsNotEmpty, IsOptional } from 'class-validator';
export class ESysPreference {
@IsOptional()
id?: number;
@IsNotEmpty()
name: string;
@IsNotEmpty()
value: string;
}