forked from Misaki/GhostEngine
13 lines
294 B
C#
13 lines
294 B
C#
using System.Text.Json;
|
|
|
|
namespace Ghost.Engine.Resources;
|
|
|
|
public static class StaticResource
|
|
{
|
|
public static readonly JsonSerializerOptions defaultSerializerOptions = new()
|
|
{
|
|
WriteIndented = true,
|
|
IncludeFields = true,
|
|
IgnoreReadOnlyProperties = true,
|
|
};
|
|
} |