Files
LanMountainDesktop/airapp/LanMountainDesktop.PluginSdk/PluginServiceExportRegistration.cs
2026-08-11 19:41:54 +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; }
}