using NEIntelligentControl2.Models.Station; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NEIntelligentControl2.Models.Pages { /// /// 标签管理 /// public class TagManager { /// /// 标签内容改变 /// public Action> TagChanged { get; set; } /// /// 标签切换 /// public Action TagSwitched { get; set; } /// /// 手动切换标签 /// public Action ChangeTag { get; set; } } }