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