mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-14 15:45:49 +01:00
13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
|
|
import { IsNotEmpty, IsOptional } from 'class-validator';
|
||
|
|
|
||
|
|
export class ESysPreference {
|
||
|
|
@IsOptional()
|
||
|
|
id?: number;
|
||
|
|
|
||
|
|
@IsNotEmpty()
|
||
|
|
name: string;
|
||
|
|
|
||
|
|
@IsNotEmpty()
|
||
|
|
value: string;
|
||
|
|
}
|