MobileViewChangedEvent.cs 370 B

12345678910111213141516
  1. using System;
  2. namespace InABox.Mobile
  3. {
  4. public class MobileViewChangedEventArgs : EventArgs
  5. {
  6. public string Property { get; }
  7. public MobileViewChangedEventArgs(string property)
  8. {
  9. Property = property;
  10. }
  11. }
  12. public delegate void MobileViewChangedEvent(object sender, MobileViewChangedEventArgs eventArgs);
  13. }