10 lines
171 B
C#
10 lines
171 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ui.App.Common
|
|
{
|
|
public class ApplicationAddedEventArgs : EventArgs
|
|
{
|
|
public ApplicationData AppData { get; set; }
|
|
}
|
|
}
|