using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IntelligentControlForsx.Service.WindturbineControl.Domain { public enum TsDataQuality { GOOD = 0, NODATA = 1, CREATED = 2, SHUTDOWN = 3, CALCOFF = 4, BAD = 5, DIVBYZERO = 6, REMOVED = 7, OPC = 256, USER = 512, } }