Files
PatchProbe-Server/PatchProbe.Shared/Models/CbsPackage.cs
2026-05-25 10:29:38 +08:00

10 lines
254 B
C#

namespace PatchProbe.Shared.Models;
public sealed class CbsPackage
{
public string? PackageIdentity { get; init; }
public string? State { get; init; }
public string? ReleaseType { get; init; }
public string? InstallTime { get; init; }
}