| 123456789101112131415161718 |
- using Quadarax.Foundation.Core.Object;
- namespace Quadarax.Foundation.Core.QConsole.Context
- {
- public class DefaultCommandContext : DisposableObject, ICommandContext
- {
- protected override void OnDisposing()
- {
- }
- public string Status => "READY";
- public override string ToString()
- {
- return "Default empty command context";
- }
- }
- }
|