ikurotime / gitgud

public
main / internal/domain/repository.go
233 B · Go Raw
 1package domain
 2
 3import "time"
 4
 5type Repository struct {
 6	ID            int64
 7	OwnerID       int64
 8	OwnerName     string
 9	Name          string
10	Description   string
11	IsPrivate     bool
12	DefaultBranch string
13	CreatedAt     time.Time
14}