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