mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
11 lines
341 B
C#
11 lines
341 B
C#
|
|
namespace LanMountainDesktop.PluginPackaging;
|
||
|
|
|
||
|
|
public sealed class PluginPackageInstallOptions
|
||
|
|
{
|
||
|
|
public bool IncludeLegacyPackages { get; init; }
|
||
|
|
|
||
|
|
public static PluginPackageInstallOptions Default { get; } = new();
|
||
|
|
|
||
|
|
public static PluginPackageInstallOptions WithLegacySupport { get; } = new() { IncludeLegacyPackages = true };
|
||
|
|
}
|