8 lines
228 B
C#
8 lines
228 B
C#
|
|
namespace BackOffice.BFF.Application.DiscountOrderCQ.Commands.CompleteOrderPayment;
|
||
|
|
|
||
|
|
public class CompleteOrderPaymentResponseDto
|
||
|
|
{
|
||
|
|
public bool Success { get; set; }
|
||
|
|
public string Message { get; set; } = string.Empty;
|
||
|
|
}
|