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; } }