ApplicationAddedEventArgs.cs 173 B

123456789
  1. using System;
  2. namespace Ryujinx.Ui.App.Common
  3. {
  4. public class ApplicationAddedEventArgs : EventArgs
  5. {
  6. public ApplicationData AppData { get; set; }
  7. }
  8. }