0
0
mirror of https://github.com/thegeeklab/github-releases-notifier.git synced 2024-11-13 01:30:40 +00:00
github-releases-notifier/internal/model/release.go

17 lines
244 B
Go
Raw Normal View History

2020-09-21 07:15:27 +00:00
package model
2017-08-08 10:08:16 +00:00
import (
"net/url"
"time"
)
// Release of a repository tagged via GitHub.
type Release struct {
ID string
Name string
Description string
URL url.URL
PublishedAt time.Time
IsPrerelease bool
2017-08-08 10:08:16 +00:00
}