aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs
blob: 5ed7baf1987326e6c16e80715be66555beaf4684 (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; }
    }
}