mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
12 lines
447 B
C#
12 lines
447 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LanDesktopPLONDS.Installer.Services;
|
|
|
|
[JsonSourceGenerationOptions(
|
|
PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase,
|
|
PropertyNameCaseInsensitive = true,
|
|
ReadCommentHandling = System.Text.Json.JsonCommentHandling.Skip,
|
|
AllowTrailingCommas = true)]
|
|
[JsonSerializable(typeof(InstallerPlondsManifest))]
|
|
internal sealed partial class InstallerJsonContext : JsonSerializerContext;
|