textualize/core/Session/Project.go
Joshua Shoemaker d9916b967a feat: write user and project to disk
does not contain documents or groups
2023-03-26 20:08:23 -05:00

19 lines
353 B
Go

package session
import (
consts "textualize/core/Consts"
)
type Project struct {
Id string
OrganizationId string
Name string
Settings ProjectSettings
}
type ProjectSettings struct {
DefaultProcessLanguage consts.Language
DefaultTranslateTargetLanguage consts.Language
IsHosted bool
}