mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
* 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
12 lines
307 B
C#
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
|
|
{
|
|
}
|