using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.Bus.EventBus { /// /// 事件接口 /// public interface IEvent { int DeviceId { get; set; } } }