mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-19 05:23:14 +02:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
|
|
import { IsNotEmpty } from "class-validator";
|
||
|
|
|
||
|
|
class UpdateConfigDTO {
|
||
|
|
@IsNotEmpty()
|
||
|
|
value: string | number | boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default UpdateConfigDTO;
|