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)]
|
|
|
|
|
[JsonSerializable(typeof(Models.Version))]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
[JsonSerializable(typeof(Models.JetBrainsState))]
|
2024-06-05 03:23:28 -07:00
|
|
|
|
[JsonSerializable(typeof(Dictionary<string, string>))]
|
2024-03-26 07:11:06 -07:00
|
|
|
|
[JsonSerializable(typeof(ViewModels.Preference))]
|
|
|
|
|
internal partial class JsonCodeGen : JsonSerializerContext { }
|
2024-03-31 01:54:29 -07:00
|
|
|
|
}
|