textualize/core/Session/Project.go
2023-02-20 21:47:14 -06:00

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
}