Files
LanMountainDesktop/airapp/LanMountainDesktop.AirAppSdk/AirAppServiceExportRegistration.cs
2026-08-11 23:03:55 +08:00

18 lines
487 B
C#

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