33 lines
635 B
C#
33 lines
635 B
C#
using System;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
// Token: 0x0200009C RID: 156
|
|
internal class LicFileLicense : License
|
|
{
|
|
// Token: 0x06000526 RID: 1318 RVA: 0x0000DC7C File Offset: 0x0000BE7C
|
|
public LicFileLicense(string key)
|
|
{
|
|
this._key = key;
|
|
}
|
|
|
|
// Token: 0x17000158 RID: 344
|
|
// (get) Token: 0x06000527 RID: 1319 RVA: 0x0000DC8C File Offset: 0x0000BE8C
|
|
public override string LicenseKey
|
|
{
|
|
get
|
|
{
|
|
return this._key;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000528 RID: 1320 RVA: 0x0000DC94 File Offset: 0x0000BE94
|
|
public override void Dispose()
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000180 RID: 384
|
|
private string _key;
|
|
}
|
|
}
|