aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs
blob: 6ae7409afd3ff01af239884bc359e3f63c375e8e (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; }
    }
}