You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
557 B
C#

namespace com.azkoss.excellite
{
using System;
using System.ComponentModel;
internal class OfficeLicense : License
{
// Methods
public OfficeLicense(string licenseKey)
{
this.licenseKey = licenseKey;
}
public override void Dispose()
{
}
// Properties
public override string LicenseKey
{
get
{
return this.licenseKey;
}
}
// Fields
private string licenseKey;
}
}