Api/Netina.Domain/Dtos/ResponseDtos/SubmitOrderPaymentResponseD...

7 lines
198 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.Domain.Dtos.ResponseDtos;
public class SubmitOrderPaymentResponseDto
{
public string PaymentUrl { get; set; } = string.Empty;
public bool NeedToPayOnline { get; set; }
}