aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs
blob: 981a82d534ef571c3586cc1447f8fce3afba1da0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

namespace Ryujinx.Ui.App.Common
{
    public class ApplicationCountUpdatedEventArgs : EventArgs
    {
        public int NumAppsFound  { get; set; }
        public int NumAppsLoaded { get; set; }
    }
}