mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-24 05:35:00 +00:00
14 lines
625 B
C#
14 lines
625 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SourceGit
|
|
{
|
|
[JsonSourceGenerationOptions(WriteIndented = true, IgnoreReadOnlyFields = true, IgnoreReadOnlyProperties = true)]
|
|
[JsonSerializable(typeof(List<Models.InteractiveRebaseJob>))]
|
|
[JsonSerializable(typeof(Models.JetBrainsState))]
|
|
[JsonSerializable(typeof(Models.Version))]
|
|
[JsonSerializable(typeof(Models.CustomColorSchema))]
|
|
[JsonSerializable(typeof(ViewModels.Preference))]
|
|
[JsonSerializable(typeof(ViewModels.RepositorySettings))]
|
|
internal partial class JsonCodeGen : JsonSerializerContext { }
|
|
}
|