mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
12 lines
258 B
C#
12 lines
258 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace LanMountainDesktop.Shared.Contracts.Update;
|
||
|
|
|
||
|
|
public sealed record DeploymentLock(
|
||
|
|
int SchemaVersion,
|
||
|
|
string Kind,
|
||
|
|
string TargetVersion,
|
||
|
|
string PayloadPath,
|
||
|
|
string? PayloadSha256,
|
||
|
|
DateTimeOffset CreatedAtUtc);
|