Merge remote-tracking branch 'origin/master'
This commit is contained in:
16
svc/models/translator.go
Normal file
16
svc/models/translator.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package models
|
||||
|
||||
import "time"
|
||||
|
||||
type TranslatorRow struct {
|
||||
ID int64 `json:"id"`
|
||||
TKey string `json:"t_key"`
|
||||
LangCode string `json:"lang_code"`
|
||||
SourceType string `json:"source_type"`
|
||||
SourceTextTR string `json:"source_text_tr"`
|
||||
TranslatedText string `json:"translated_text"`
|
||||
IsManual bool `json:"is_manual"`
|
||||
Status string `json:"status"`
|
||||
Provider string `json:"provider"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
Reference in New Issue
Block a user