| 1234567891011121314151617181920 |
- using Aitex.Core.RT.Event;
- using System.Runtime.Serialization;
- namespace MECF.Framework.Common.Event
- {
- public interface IAlarmHandler
- {
- void AlarmStateChanged(AlarmEventItem item);
- }
- [DataContract]
- [Serializable]
- public class AlarmEventItem : EventItem
- {
- public Func<bool> ResetChecker { get; set; }
- public bool CanDoReset { get; set; }
- }
- }
|