using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.Basic { public class CachePointGroupDTO { public int IdA { get; set; } public int IdB { get; set; } public string PointCodeA { get; set; } public string PointCodeB { get; set; } public int PointTypeA { get; set; } public int PointTypeB { get; set; } public int PointStatusA { get; set; } public int PointStatusB { get; set; } public int DepthA { get; set; } public int DepthB { get; set; } public int EnableStatusA { get; set; } public int EnableStatusB { get; set; } } }