mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
9 lines
190 B
C#
9 lines
190 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.API.Serialization;
|
|
|
|
[JsonSerializable(typeof(string))]
|
|
public partial class ApiJsonSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|