Ajout paramètre projet manquant

This commit is contained in:
wpetit 2020-07-06 17:50:32 +02:00
parent 33704f6485
commit 584f47bf84
1 changed files with 5 additions and 4 deletions

View File

@ -17,10 +17,11 @@ type Project struct {
}
type Params struct {
TaskCategories map[TaskCategoryID]TaskCategory `json:"taskCategories"`
TimeUnit TimeUnit `json:"timeUnit"`
Currency string `json:"currency"`
RoundUpEstimations bool `json:"roundUpEstimations"`
TaskCategories map[TaskCategoryID]TaskCategory `json:"taskCategories"`
TimeUnit TimeUnit `json:"timeUnit"`
Currency string `json:"currency"`
RoundUpEstimations bool `json:"roundUpEstimations"`
HideFinancialPreviewOnPrint bool `json:"hideFinancialPreviewOnPrint"`
}
type TimeUnit struct {