Files
PR-Helper/models/repository.go
T

13 lines
287 B
Go
Raw Normal View History

package models
import "time"
type Repository struct {
ID int64 `json:"id"`
URL string `json:"url"`
LocalPath string `json:"local_path"`
SizeBytes int64 `json:"size_bytes"`
ClonedAt time.Time `json:"cloned_at"`
LastUsed time.Time `json:"last_used"`
}