Implemented load new image when navigating back from backup page (#9)

This commit is contained in:
Alex
2022-02-06 20:31:32 -06:00
committed by GitHub
parent 1d3ee2008c
commit c24fb403c5
12 changed files with 133 additions and 38 deletions

View File

@@ -1,6 +1,6 @@
import { IsNotEmpty } from 'class-validator';
class GetAssetDto {
export class GetAssetDto {
@IsNotEmpty()
deviceId: string;
}

View File

@@ -0,0 +1,6 @@
import { IsNotEmpty } from 'class-validator';
export class GetNewAssetQueryDto {
@IsNotEmpty()
latestDate: string;
}