mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
12 lines
190 B
Go
12 lines
190 B
Go
package entity
|
|
|
|
type Translation struct {
|
|
Lang string `json:"lang"`
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
func (t Translation) GetLang() (l string) {
|
|
return t.Lang
|
|
}
|