2025-02-22 00:43:39 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
2025-02-14 01:43:52 +01:00
|
|
|
|
using Wino.Core.Domain.Models.AutoDiscovery;
|
|
|
|
|
|
using Wino.Core.Domain.Models.Personalization;
|
|
|
|
|
|
using Wino.Core.Domain.Models.Reader;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Models;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonSerializable(typeof(AutoDiscoverySettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(CustomThemeMetadata))]
|
|
|
|
|
|
[JsonSerializable(typeof(WebViewMessage))]
|
2025-02-22 00:43:39 +01:00
|
|
|
|
[JsonSerializable(typeof(List<ImageInfo>))]
|
2025-05-18 14:06:25 +02:00
|
|
|
|
public partial class DomainModelsJsonContext : JsonSerializerContext;
|