import { ApiProperty } from '@nestjs/swagger';

export class Setting {
    @ApiProperty()
    id: number;

    @ApiProperty()
    name: string;

    @ApiProperty()
    value: string;
}
