30 lines
822 B
Go
30 lines
822 B
Go
|
package model
|
||
|
|
||
|
type ProjectID string
|
||
|
|
||
|
type ProjectEntry struct {
|
||
|
ID ProjectID `storm:"id"`
|
||
|
Version uint64 `storm:"index"`
|
||
|
Project *Project
|
||
|
}
|
||
|
|
||
|
type Project struct {
|
||
|
ID ProjectID `json:"id" storm:"id"`
|
||
|
Label string `json:"label"`
|
||
|
Description string `json:"description"`
|
||
|
Tasks map[TaskID]Task `json:"tasks"`
|
||
|
Params Params `json:"params"`
|
||
|
}
|
||
|
|
||
|
type Params struct {
|
||
|
TaskCategories map[TaskCategoryID]TaskCategory `json:"taskCategories"`
|
||
|
TimeUnit TimeUnit `json:"timeUnit"`
|
||
|
Currency string `json:"currency"`
|
||
|
RoundUpEstimations bool `json:"roundUpEstimations"`
|
||
|
}
|
||
|
|
||
|
type TimeUnit struct {
|
||
|
Acronym string `json:"acronym"`
|
||
|
Label string `json:"label"`
|
||
|
}
|