2024-06-05 03:23:28 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.Json.Serialization;
|
2024-03-26 07:11:06 -07:00
|
|
|
|
|
|
|
|
|
namespace SourceGit
|
|
|
|
|
{
|
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true, IgnoreReadOnlyFields = true, IgnoreReadOnlyProperties = true)]
|
2024-06-20 02:02:12 -07:00
|
|
|
|
[JsonSerializable(typeof(List<Models.InteractiveRebaseJob>))]
|
2024-07-02 07:54:26 -07:00
|
|
|
|
[JsonSerializable(typeof(Models.JetBrainsState))]
|
|
|
|
|
[JsonSerializable(typeof(Models.Version))]
|
|
|
|
|
[JsonSerializable(typeof(Models.CustomColorSchema))]
|
2024-03-26 07:11:06 -07:00
|
|
|
|
[JsonSerializable(typeof(ViewModels.Preference))]
|
2024-06-30 20:57:13 -07:00
|
|
|
|
[JsonSerializable(typeof(ViewModels.RepositorySettings))]
|
2024-03-26 07:11:06 -07:00
|
|
|
|
internal partial class JsonCodeGen : JsonSerializerContext { }
|
2024-03-31 01:54:29 -07:00
|
|
|
|
}
|