IGpuNameSet.cs 212 B

123456789
  1. using NTMiner.Core.Gpus;
  2. using System.Collections.Generic;
  3. namespace NTMiner.Core {
  4. public interface IGpuNameSet {
  5. void Add(GpuName gpuName);
  6. IEnumerable<IGpuName> AsEnumerable();
  7. }
  8. }