rjx-mirror/Ryujinx/Ui/ApplicationCountUpdatedEventArgs.cs

10 lines
210 B
C#
Raw Normal View History

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