mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-06 06:56:25 +00:00
12 lines
270 B
Go
12 lines
270 B
Go
|
package types
|
||
|
|
||
|
//Group
|
||
|
type Group struct {
|
||
|
ID string `json:"id"`
|
||
|
Displayname string `json:"displayname"`
|
||
|
UserCount int `json:"usercount"`
|
||
|
Disabled int `json:"disabled"`
|
||
|
CanAdd bool `json:"canAdd"`
|
||
|
CanRemove bool `json:"canRemove"`
|
||
|
}
|