UserLoginNotification.cs 269 B

123456789101112131415
  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. using TeamAAS_VP.Models;
  8. namespace TeamAAS_VP.Events
  9. {
  10. public class UserLoginNotification : PubSubEvent<User>
  11. {
  12. }
  13. }