0
0
mirror of https://github.com/thegeeklab/github-releases-notifier.git synced 2024-11-14 08:00:40 +00:00
github-releases-notifier/internal/model/repository.go

14 lines
207 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"
// Repository on GitHub.
type Repository struct {
ID string
Name string
Owner string
Description string
URL url.URL
Release Release
}