Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package swagger
  5. import (
  6. api "code.gitea.io/gitea/modules/structs"
  7. )
  8. // NotificationThread
  9. // swagger:response NotificationThread
  10. type swaggerNotificationThread struct {
  11. // in:body
  12. Body api.NotificationThread `json:"body"`
  13. }
  14. // NotificationThreadList
  15. // swagger:response NotificationThreadList
  16. type swaggerNotificationThreadList struct {
  17. // in:body
  18. Body []api.NotificationThread `json:"body"`
  19. }