1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-18 16:16:40 +00:00
Ryujinx/src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs

11 lines
218 B
C#
Raw Normal View History

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