hello-shop/libraries/HelloShop.EventBus.Abstractions/EventBusOptions.cs
2025-03-20 22:13:45 +08:00

20 lines
715 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
using System.Text.Json;
using System.Text.Json.Serialization.Metadata;
namespace HelloShop.EventBus.Abstractions
{
public class EventBusOptions
{
public Dictionary<string, Type> EventTypes { get; } = [];
public JsonSerializerOptions JsonSerializerOptions { get; } = new(DefaultSerializerOptions);
internal static readonly JsonSerializerOptions DefaultSerializerOptions = new()
{
TypeInfoResolver = JsonSerializer.IsReflectionEnabledByDefault ? new DefaultJsonTypeInfoResolver() : JsonTypeInfoResolver.Combine()
};
}
}