AssetRipper_AssetRipper/Source/AssetRipper.GUI.Web/AppJsonSerializerContext.cs
ds5678 a485e91ce9 Web API improvements
* Use GET instead of POST for loading pages
* Add Count api for collections
* Add Data api for resources
* Use Data api to load the resource page faster
* Improve url creation code in ImageTab
* Related: #1347
2024-05-20 19:40:23 -04:00

12 lines
307 B
C#

using System.Text.Json.Serialization;
namespace AssetRipper.GUI.Web;
[JsonSerializable(typeof(Dictionary<string, string>))]
[JsonSerializable(typeof(string[]))]
[JsonSerializable(typeof(bool))]
[JsonSerializable(typeof(int))]
internal partial class AppJsonSerializerContext : JsonSerializerContext
{
}