9 lines
216 B
C#
9 lines
216 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.App.Inventory.Commands;
|
|
|
|
/// <summary>
|
|
/// 释放过期库存锁定命令。
|
|
/// </summary>
|
|
public sealed record ReleaseExpiredInventoryLocksCommand : IRequest<int>;
|