using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// Dma方向 /// public enum eDmaDirection { /// /// 流出 /// FlowOut = 0, /// /// 流入 /// FlowIn = 1 } }