using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Admin.Store.Coupon.Update; public sealed record Command( int ID, string Name, DateTime? ExpiresAt, int LowStockThreshold ) : ICommand;