initial commit. Cloned timetracker repository
This commit is contained in:
21
app/view/i18n.go
Normal file
21
app/view/i18n.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package view
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type Language struct {
|
||||
ID uint64 `json:"id"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
||||
DeletedAt *time.Time `json:"deleted_at,omitempty"`
|
||||
Name string `json:"name"`
|
||||
ISOCode string `json:"iso_code"`
|
||||
LangCode string `json:"lang_code"`
|
||||
DateFormat string `json:"date_format"`
|
||||
DateFormatShort string `json:"date_format_short"`
|
||||
RTL bool `json:"rtl"`
|
||||
IsDefault bool `json:"is_default"`
|
||||
Active bool `json:"active"`
|
||||
Flag string `json:"flag"`
|
||||
}
|
||||
Reference in New Issue
Block a user