17 lines
548 B
C#
17 lines
548 B
C#
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
using Moonlight.Api.Http.Services.ContainerHelper.Events;
|
|
using Moonlight.Api.Http.Services.ContainerHelper.Requests;
|
|
|
|
namespace Moonlight.Api.Http.Services.ContainerHelper;
|
|
|
|
[JsonSerializable(typeof(SetVersionDto))]
|
|
[JsonSerializable(typeof(ProblemDetails))]
|
|
[JsonSerializable(typeof(RebuildEventDto))]
|
|
[JsonSerializable(typeof(RequestRebuildDto))]
|
|
|
|
[JsonSourceGenerationOptions(JsonSerializerDefaults.Web)]
|
|
public partial class SerializationContext : JsonSerializerContext
|
|
{
|
|
|
|
} |