aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs
blob: 78eed7afdac8981083a1b2081dff9b0fff61bb31 (plain) (blame)
1
2
3
4
5
6
7
8
9
using System;

namespace Ryujinx.Ui.App.Common
{
    public class ApplicationAddedEventArgs : EventArgs
    {
        public ApplicationData AppData { get; set; }
    }
}