QuestEvent.cs 265 B

12345678910111213
  1. using Prism.Events;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace LogoForceTestApp.Modules.MainModule.ViewModels
  8. {
  9. internal class QuestEvent : PubSubEvent<string>
  10. {
  11. }
  12. }