github-releases-notifier/internal/model/repository.go

14 lines
207 B
Go

package model
import "net/url"
// Repository on GitHub.
type Repository struct {
ID string
Name string
Owner string
Description string
URL url.URL
Release Release
}