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