System.ComponentModel.License
namespace System.ComponentModel
{
public abstract class License : IDisposable
{
public abstract string LicenseKey { get; }
protected License();
public abstract void Dispose();
}
}