mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
406 B
24 lines
406 B
import { Type } from 'class-transformer';
|
|
import {
|
|
ArrayNotEmpty,
|
|
IsArray,
|
|
IsISO8601,
|
|
IsNumber,
|
|
IsOptional
|
|
} from 'class-validator';
|
|
|
|
export class UpdateBulkMarketDataDto {
|
|
@ArrayNotEmpty()
|
|
@IsArray()
|
|
@Type(() => UpdateMarketDataDto)
|
|
marketData: UpdateMarketDataDto[];
|
|
}
|
|
|
|
class UpdateMarketDataDto {
|
|
@IsISO8601()
|
|
@IsOptional()
|
|
date?: string;
|
|
|
|
@IsNumber()
|
|
marketPrice: number;
|
|
}
|
|
|