zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Commands/Ordering/SetPaidOrderStatusCommand.cs

12 lines
294 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
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;
}
}