MobileViewModelLoadedEvent.cs 233 B

1234567891011
  1. using System;
  2. namespace InABox.Mobile
  3. {
  4. public class MobileViewModelLoadedEventArgs : EventArgs
  5. {
  6. }
  7. public delegate void MobileViewModelLoadedEvent(object sender, MobileViewModelLoadedEventArgs args);
  8. }