ApplicationCountUpdatedEventArgs.cs 221 B

12345678910
  1. using System;
  2. namespace Ryujinx.Ui.App.Common
  3. {
  4. public class ApplicationCountUpdatedEventArgs : EventArgs
  5. {
  6. public int NumAppsFound { get; set; }
  7. public int NumAppsLoaded { get; set; }
  8. }
  9. }