Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/PluginServiceExportRegistration.cs
lincube d3356f3319 0.5.19
插件系统V2
2026-03-12 09:22:03 +08:00

18 lines
487 B
C#

namespace LanMountainDesktop.PluginSdk;
public sealed class PluginServiceExportRegistration
{
public PluginServiceExportRegistration(Type contractType, Type implementationType)
{
ArgumentNullException.ThrowIfNull(contractType);
ArgumentNullException.ThrowIfNull(implementationType);
ContractType = contractType;
ImplementationType = implementationType;
}
public Type ContractType { get; }
public Type ImplementationType { get; }
}