AlarmEvent.cs 199 B

123456789
  1. using Prism.Events;
  2. using System.Collections.Generic;
  3. namespace LogoForceTestApp.Modules.MainModule.ViewModels
  4. {
  5. internal class AlarmEvent:PubSubEvent<Dictionary<string,string>>
  6. {
  7. }
  8. }