mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-15 11:01:08 +00:00
11 lines
229 B
C#
11 lines
229 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ava.Utilities.AppLibrary
|
|
{
|
|
public class ApplicationCountUpdatedEventArgs : EventArgs
|
|
{
|
|
public int NumAppsFound { get; set; }
|
|
public int NumAppsLoaded { get; set; }
|
|
}
|
|
}
|