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

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