WorkShiftChangedNotification.cs 478 B

12345678910111213141516171819
  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 TeamAAS_VP.Events
  8. {
  9. public class WorkShiftChangedNotification:PubSubEvent<ShiftChangedPayload>
  10. {
  11. }
  12. public class ShiftChangedPayload
  13. {
  14. public string NewShiftName { get; set; } // 中文注释:新班次名称
  15. public DateTime SwitchTime { get; set; } // 中文注释:切换时间
  16. }
  17. }