2020-01-09 06:56:32 -05:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-09 06:56:32 -05:00
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import (
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NotificationThread
|
|
|
|
// swagger:response NotificationThread
|
|
|
|
type swaggerNotificationThread struct {
|
|
|
|
// in:body
|
|
|
|
Body api.NotificationThread `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotificationThreadList
|
|
|
|
// swagger:response NotificationThreadList
|
|
|
|
type swaggerNotificationThreadList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.NotificationThread `json:"body"`
|
|
|
|
}
|
2020-01-14 10:37:19 -05:00
|
|
|
|
|
|
|
// Number of unread notifications
|
|
|
|
// swagger:response NotificationCount
|
|
|
|
type swaggerNotificationCount struct {
|
|
|
|
// in:body
|
|
|
|
Body api.NotificationCount `json:"body"`
|
|
|
|
}
|