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