mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
20 lines
628 B
C#
20 lines
628 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Plonds.Shared.Models;
|
|
|
|
public sealed record PlondsManifest(
|
|
string FormatVersion,
|
|
string CurrentVersion,
|
|
string PreviousVersion,
|
|
bool IsFullUpdate,
|
|
bool RequiresCleanInstall,
|
|
string Channel,
|
|
string Platform,
|
|
DateTimeOffset UpdatedAt,
|
|
string CompareMethod,
|
|
[property: JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
string? HashAlgorithm,
|
|
IReadOnlyDictionary<string, PlondsFileEntry> FilesMap,
|
|
IReadOnlyDictionary<string, PlondsChangedFileEntry> ChangedFilesMap,
|
|
IReadOnlyDictionary<string, string> Checksums);
|