| 123456789101112131415161718192021222324252627 |
- //
- // System.ComponentModel.License
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- namespace System.ComponentModel
- {
- public abstract class License : IDisposable
- {
- [MonoTODO]
- protected License()
- {
- }
- public abstract string LicenseKey { get; }
- public abstract void Dispose();
- [MonoTODO]
- ~License()
- {
- }
- }
- }
|