17 lines
510 B
Go
17 lines
510 B
Go
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"`
|
|
}
|