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
288 B
C#
11 lines
288 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Systems.AppLibrary
|
|
{
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(ApplicationMetadata))]
|
|
internal partial class ApplicationJsonSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|