using System.Text.Json.Serialization; using LyricFlow.Core.Dtos; using LyricFlow.Core.Services; namespace LyricFlow.Core.Serialization; [JsonSourceGenerationOptions( PropertyNameCaseInsensitive = true, WriteIndented = true )] [JsonSerializable(typeof(AppCorePreferencesDto))] [JsonSerializable(typeof(ProjectStateDto))] [JsonSerializable(typeof(SessionPayload))] internal partial class LyricFlowCoreJsonContext : JsonSerializerContext { }