10 lines
210 B
C#
10 lines
210 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Ui
|
|||
|
{
|
|||
|
public class ApplicationCountUpdatedEventArgs : EventArgs
|
|||
|
{
|
|||
|
public int NumAppsFound { get; set; }
|
|||
|
public int NumAppsLoaded { get; set; }
|
|||
|
}
|
|||
|
}
|