Files
SquiddlerBlazor/SquiddlerDomain/SquiddlerContext.cs
2026-06-21 18:15:16 -05:00

10 lines
287 B
C#

using System.Text.Json.Serialization;
namespace Squiddler.Domain;
[JsonSourceGenerationOptions(WriteIndented = false)]
[JsonSerializable(typeof(PlayedWords))]
public partial class SquiddlerContext : JsonSerializerContext
{
// The generator builds the implementation automatically
}