IQConsoleContext.cs 169 B

123456789
  1. using System;
  2. namespace Quadarax.Foundation.Core.QConsole.Context
  3. {
  4. public interface IQConsoleContext : IDisposable
  5. {
  6. string Status { get; }
  7. }
  8. }