first commit
This commit is contained in:
20
src/current/dto/current-response.dto.ts
Normal file
20
src/current/dto/current-response.dto.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
export type CurrentItemDto = {
|
||||
edge: string;
|
||||
tag: string;
|
||||
value: number;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
time: Date;
|
||||
name: string | null;
|
||||
tagGroup: string | null;
|
||||
min: number | null;
|
||||
max: number | null;
|
||||
comment: string | null;
|
||||
unitOfMeasurement: string | null;
|
||||
precision: number | null;
|
||||
};
|
||||
|
||||
export type CurrentResponseDto = {
|
||||
edge: string;
|
||||
items: CurrentItemDto[];
|
||||
};
|
||||
Reference in New Issue
Block a user