mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-03 05:57:19 +01:00
12 lines
287 B
C#
12 lines
287 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Ui
|
|||
|
{
|
|||
|
public class ApplicationAddedEventArgs : EventArgs
|
|||
|
{
|
|||
|
public ApplicationData AppData { get; set; }
|
|||
|
public int NumAppsFound { get; set; }
|
|||
|
public int NumAppsLoaded { get; set; }
|
|||
|
}
|
|||
|
}
|