10 lines
287 B
C#
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
|
|
} |