textualize/entities/Language.go
2023-06-27 08:04:53 -05:00

9 lines
229 B
Go

package entities
type Language struct {
DisplayName string `json:"displayName"`
ProcessCode string `json:"processCode"`
TranslateCode string `json:"translateCode"`
IsBundledCustom bool `json:"isBundledCustom"`
}