IMineWorkSet.cs 295 B

12345678910
  1. using NTMiner.MinerServer;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace NTMiner.Core.MinerServer {
  5. public interface IMineWorkSet : IEnumerable<IMineWork> {
  6. bool TryGetMineWork(Guid mineWorkId, out IMineWork mineWork);
  7. bool Contains(Guid mineWorkId);
  8. }
  9. }