aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs')
-rw-r--r--src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs b/src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs
new file mode 100644
index 00000000..5ed7baf1
--- /dev/null
+++ b/src/Ryujinx.UI.Common/App/ApplicationCountUpdatedEventArgs.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace Ryujinx.UI.App.Common
+{
+ public class ApplicationCountUpdatedEventArgs : EventArgs
+ {
+ public int NumAppsFound { get; set; }
+ public int NumAppsLoaded { get; set; }
+ }
+}