mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-22 00:54:26 +08:00
17 lines
561 B
C#
17 lines
561 B
C#
namespace Plonds.Shared.Models;
|
|
|
|
public sealed record PlondsManifest(
|
|
string FormatVersion,
|
|
string CurrentVersion,
|
|
string PreviousVersion,
|
|
bool IsFullUpdate,
|
|
bool RequiresCleanInstall,
|
|
string Channel,
|
|
string Platform,
|
|
DateTimeOffset UpdatedAt,
|
|
IReadOnlyDictionary<string, PlondsFileEntry> FilesMap,
|
|
IReadOnlyDictionary<string, PlondsChangedFileEntry> ChangedFilesMap,
|
|
IReadOnlyDictionary<string, string> Checksums,
|
|
PlondsDownloadInfo? Downloads = null,
|
|
IReadOnlyList<PlondsSourceDescriptor>? Sources = null);
|