9 lines
178 B
C#
Raw Normal View History

namespace Payment.API
{
public class PaymentSettings
{
public bool SuccessPayment { get; set; }
public string EventBusConnection { get; set; }
}
}