9 lines
179 B
C#
Raw Normal View History

namespace Payment.API
{
public class PaymentSettings
{
2017-05-19 08:53:24 +02:00
public bool PaymentSucceded { get; set; }
public string EventBusConnection { get; set; }
}
}