PhotoTakenEventArgs.cs 298 B

1234567891011121314
  1. using Windows.UI.Xaml.Media.Imaging;
  2. namespace YJMPD_UWP.Helpers.EventArgs
  3. {
  4. public class PhotoTakenEventArgs : System.EventArgs
  5. {
  6. public string Photo { get; private set; }
  7. public PhotoTakenEventArgs(string photo)
  8. {
  9. Photo = photo;
  10. }
  11. }
  12. }