TunnelCountTemp.cs 231 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace WCS.Service.Entity
  5. {
  6. public class TunnelCountTemp
  7. {
  8. public string Tunnel { get; set; }
  9. public int Count { get; set; }
  10. }
  11. }