mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-08 06:51:36 +01:00
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; }
|
|||
|
}
|
|||
|
}
|