mirror of
https://github.com/CaramelFur/Picsur.git
synced 2026-06-22 03:41:24 +02:00
16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator';
|
|
import { EntityID } from '../validators/entity-id.validator';
|
|
|
|
export class ESysPreference {
|
|
@EntityID()
|
|
id?: number;
|
|
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
key: string;
|
|
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
value: string;
|
|
}
|