2024-10-23 21:55:12 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type NotificationGroupForm struct {
|
2024-11-16 20:57:03 +08:00
|
|
|
Name string `json:"name" minLength:"1"`
|
2024-10-23 21:55:12 +08:00
|
|
|
Notifications []uint64 `json:"notifications"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type NotificationGroupResponseItem struct {
|
|
|
|
Group NotificationGroup `json:"group"`
|
|
|
|
Notifications []uint64 `json:"notifications"`
|
|
|
|
}
|