mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
80f72676ec
* supports customize the commit graph
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 { }
|
|
}
|