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

15 lines
415 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.EventBus.Dapr
{
public class DaprEventBusOptions
{
public string PubSubName { get; set; } = "event-bus-pubsub";
public bool RequireAuthenticatedDaprApiToken { get; set; } = false;
public string? DaprApiToken { get; set; }
}
}