diff options
Diffstat (limited to 'Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs')
-rw-r--r-- | Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs b/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs new file mode 100644 index 00000000..981a82d5 --- /dev/null +++ b/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; } + } +}
\ No newline at end of file |