DefaultCommandContext.cs 409 B

123456789101112131415161718
  1. using Quadarax.Foundation.Core.Object;
  2. namespace Quadarax.Foundation.Core.QConsole.Context
  3. {
  4. public class DefaultCommandContext : DisposableObject, ICommandContext
  5. {
  6. protected override void OnDisposing()
  7. {
  8. }
  9. public string Status => "READY";
  10. public override string ToString()
  11. {
  12. return "Default empty command context";
  13. }
  14. }
  15. }