IIdContext.cs 226 B

12345678910
  1. namespace Flyinsono.Client.Test.Utilities.Executors
  2. {
  3. public interface IIdContext
  4. {
  5. /// <summary>
  6. /// Gets the Id of this context.
  7. /// </summary>
  8. string Id { get; }
  9. }
  10. }