ActionCountData.cs 218 B

123456789
  1. namespace NTMiner.ServerNode {
  2. public class ActionCountData : IActionCount {
  3. public ActionCountData() { }
  4. public string ActionName { get; set; }
  5. public long Count { get; set; }
  6. }
  7. }