mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-10 10:13:38 +00: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; }
|
|||
|
}
|
|||
|
}
|