using LiteDB; using Octokit; namespace StabilityMatrix.Core.Models.Database; public class GithubCacheEntry { [BsonId] public string CacheKey { get; set; } public DateTimeOffset LastUpdated { get; set; } = DateTimeOffset.UtcNow; public IEnumerable AllReleases { get; set; } = new List(); public IEnumerable Branches { get; set; } = new List(); public IEnumerable Commits { get; set; } = new List(); }