feat(models): Support nested groups
This commit is contained in:
parent
7d503edbc9
commit
750fa70332
@ -14,7 +14,10 @@ type Runner struct {
|
||||
}
|
||||
|
||||
type Group struct {
|
||||
Name string `json:"name" validate:"required"`
|
||||
Name string `json:"name" validate:"required"`
|
||||
ParentGroup struct {
|
||||
Name string `json:"name" validate:"required"`
|
||||
} `json:"parent_group" validate:"optional"`
|
||||
}
|
||||
|
||||
type ContractTemplateOptions struct {
|
||||
|
Loading…
x
Reference in New Issue
Block a user