19 lines
341 B
Go
19 lines
341 B
Go
package session
|
|
|
|
import (
|
|
app "textualize/core/App"
|
|
)
|
|
|
|
type Project struct {
|
|
Id string
|
|
OrganizationId string
|
|
Name string
|
|
Settings ProjectSettings
|
|
}
|
|
|
|
type ProjectSettings struct {
|
|
DefaultProcessLanguage app.Language
|
|
DefaultTranslateTargetLanguage app.Language
|
|
IsHosted bool
|
|
}
|