initial commit. Cloned timetracker repository

This commit is contained in:
Daniel Goc
2026-03-10 09:02:57 +01:00
commit f2952bcef0
189 changed files with 21334 additions and 0 deletions

21
app/view/i18n.go Normal file
View 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"`
}