2020-01-31 18:21:46 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2021-01-08 08:14:13 +00:00
|
|
|
|
namespace Ryujinx.Ui.App
|
2020-01-31 18:21:46 +00:00
|
|
|
|
{
|
|
|
|
|
public class ApplicationCountUpdatedEventArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public int NumAppsFound { get; set; }
|
|
|
|
|
public int NumAppsLoaded { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|