PalletLayoutNotification.cs 302 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.Interfaces;
  8. using TeamAAS_VP.Models;
  9. namespace TeamAAS_VP.Events
  10. {
  11. public class PalletLayoutNotification : PubSubEvent<Pallet>
  12. {
  13. }
  14. }