forked from Misaki/GhostEngine
11 lines
286 B
C#
11 lines
286 B
C#
using Ghost.Data.Models;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ghost.Data;
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(TemplateInfo))]
|
|
[JsonSerializable(typeof(ProjectMetadata))]
|
|
internal partial class JsonContext : JsonSerializerContext
|
|
{
|
|
} |