12 lines
294 B
C#
12 lines
294 B
C#
|
using MediatR;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace ZeroFramework.DeviceCenter.Application.Commands.Ordering
|
|||
|
{
|
|||
|
public class SetPaidOrderStatusCommand(Guid orderId) : IRequest<bool>
|
|||
|
{
|
|||
|
[DataMember]
|
|||
|
public Guid OrderId { get; private set; } = orderId;
|
|||
|
}
|
|||
|
}
|