2019-05-07 06:42:51 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package base
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// ReleaseAsset represents a release asset
|
|
|
|
type ReleaseAsset struct {
|
2020-08-28 07:06:37 +05:30
|
|
|
ID int64
|
2019-05-07 06:42:51 +05:30
|
|
|
Name string
|
|
|
|
ContentType *string
|
|
|
|
Size *int
|
|
|
|
DownloadCount *int
|
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
2020-10-14 09:36:00 +05:30
|
|
|
DownloadURL *string
|
2019-05-07 06:42:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Release represents a release
|
|
|
|
type Release struct {
|
|
|
|
TagName string
|
|
|
|
TargetCommitish string
|
|
|
|
Name string
|
|
|
|
Body string
|
|
|
|
Draft bool
|
|
|
|
Prerelease bool
|
2019-10-05 16:39:27 +05:30
|
|
|
PublisherID int64
|
|
|
|
PublisherName string
|
|
|
|
PublisherEmail string
|
2019-05-07 06:42:51 +05:30
|
|
|
Assets []ReleaseAsset
|
|
|
|
Created time.Time
|
|
|
|
Published time.Time
|
|
|
|
}
|