Artteiv's picture
feat: add feeds
2fc4f90
raw
history blame contribute delete
263 Bytes
import { IsOptional, IsString, IsUrl } from 'class-validator';
export class UpdateFeedDto {
@IsUrl()
@IsOptional()
image_url?: string;
@IsString()
@IsOptional()
title?: string;
@IsString()
@IsOptional()
description?: string;
}