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; }
|
|||
|
}
|
|||
|
}
|