Moved AppLibrary, Configuration, and PlayReport namespaces to Ryujinx.Systems, add the compat list stuff in the base Ryujinx.Systems namespace. Moved the compatibility UI stuff to the proper UI view/viewmodel folders.
11 lines
227 B
C#
11 lines
227 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ava.Systems.AppLibrary
|
|
{
|
|
public class ApplicationCountUpdatedEventArgs : EventArgs
|
|
{
|
|
public int NumAppsFound { get; set; }
|
|
public int NumAppsLoaded { get; set; }
|
|
}
|
|
}
|