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

35 lines
775B

  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 base
  5. import "time"
  6. // ReleaseAsset represents a release asset
  7. type ReleaseAsset struct {
  8. URL string
  9. Name string
  10. ContentType *string
  11. Size *int
  12. DownloadCount *int
  13. Created time.Time
  14. Updated time.Time
  15. }
  16. // Release represents a release
  17. type Release struct {
  18. TagName string
  19. TargetCommitish string
  20. Name string
  21. Body string
  22. Draft bool
  23. Prerelease bool
  24. PublisherID int64
  25. PublisherName string
  26. PublisherEmail string
  27. Assets []ReleaseAsset
  28. Created time.Time
  29. Published time.Time
  30. }
上海开阖软件有限公司 沪ICP备12045867号-1