using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Admin.Store.GameCatalog.Update; public sealed record Command( int ID, int Price, bool IsActive ) : ICommand<Result>;