mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-14 07:45:39 +01:00
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator';
|
|
import { EntityIDOptional } from '../validators/entity-id.validator';
|
|
|
|
export class ESysPreference {
|
|
@EntityIDOptional()
|
|
id?: string;
|
|
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
key: string;
|
|
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
value: string;
|
|
}
|