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