mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-02-03 20:20:10 +00:00
12 lines
303 B
Go
12 lines
303 B
Go
package model
|
|
|
|
type NotificationGroupForm struct {
|
|
Name string `json:"name" minLength:"1"`
|
|
Notifications []uint64 `json:"notifications"`
|
|
}
|
|
|
|
type NotificationGroupResponseItem struct {
|
|
Group NotificationGroup `json:"group"`
|
|
Notifications []uint64 `json:"notifications"`
|
|
}
|