mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 21:24:59 +00:00
9 lines
352 B
C#
9 lines
352 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SourceGit
|
|
{
|
|
[JsonSourceGenerationOptions(WriteIndented = true, IgnoreReadOnlyFields = true, IgnoreReadOnlyProperties = true)]
|
|
[JsonSerializable(typeof(Models.Version))]
|
|
[JsonSerializable(typeof(ViewModels.Preference))]
|
|
internal partial class JsonCodeGen : JsonSerializerContext { }
|
|
}
|