using StabilityMatrix.Core.Models.Update; namespace StabilityMatrix.Core.Updater; public class UpdateStatusChangedEventArgs : EventArgs { public UpdateInfo? LatestUpdate { get; init; } public IReadOnlyDictionary UpdateChannels { get; init; } = new Dictionary(); public DateTimeOffset CheckedAt { get; init; } = DateTimeOffset.UtcNow; }