chore(@desktop/general): currency and cache dto don't need to be references of object

This commit is contained in:
Sale Djenic 2023-04-06 13:52:49 +02:00 committed by saledjenic
parent 97b6c0fe6f
commit ae397a57c0
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import tables, times
export tables, times
type Value*[T] = ref object
type Value*[T] = object
value*: T
timestamp*: DateTime

View File

@ -2,7 +2,7 @@ import json
include ../../common/json_utils
type
CurrencyFormatDto* = ref object
CurrencyFormatDto* = object
symbol*: string
displayDecimals*: uint
stripTrailingZeroes*: bool