ryubing/Ryujinx/Ui/App/ApplicationCountUpdatedEven...

10 lines
214 B
C#

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