2019-05-06 19:12:51 -06:00
|
|
|
// 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-27 19:36:37 -06:00
|
|
|
ID int64
|
2019-05-06 19:12:51 -06:00
|
|
|
Name string
|
|
|
|
ContentType *string
|
|
|
|
Size *int
|
|
|
|
DownloadCount *int
|
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
2020-10-13 22:06:00 -06:00
|
|
|
DownloadURL *string
|
2019-05-06 19:12:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Release represents a release
|
|
|
|
type Release struct {
|
|
|
|
TagName string
|
|
|
|
TargetCommitish string
|
|
|
|
Name string
|
|
|
|
Body string
|
|
|
|
Draft bool
|
|
|
|
Prerelease bool
|
2019-10-05 05:09:27 -06:00
|
|
|
PublisherID int64
|
|
|
|
PublisherName string
|
|
|
|
PublisherEmail string
|
2019-05-06 19:12:51 -06:00
|
|
|
Assets []ReleaseAsset
|
|
|
|
Created time.Time
|
|
|
|
Published time.Time
|
|
|
|
}
|