Ryujinx/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEven...

10 lines
221 B
C#

using System;
namespace Ryujinx.Ui.App.Common
{
public class ApplicationCountUpdatedEventArgs : EventArgs
{
public int NumAppsFound { get; set; }
public int NumAppsLoaded { get; set; }
}
}