using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Feed.ToggleLike; public sealed record Command(int PostID, int MemberID) : ICommand<Result<Response>>;