using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.DevAlgorithm { public class SetCfqItem { public SetCfqItem() { } public SetCfqItem(string cfqAddr, long freqPoint) { CfqAddr = cfqAddr; FreqPoint = freqPoint; } public string CfqAddr { get; set; } public long FreqPoint { get; set; } } }