using Application.Abstractions.Messaging;
using SharedKernel.Results;
namespace Application.Features.Api.Forum.PostCheer.Send;
/// 분석글 응원(Cheer) 발신 — D3 M4. 반환값은 생성된 PostCheer.ID.
public sealed record Command(
int MemberID,
int PostID,
int Amount,
string? Message
) : ICommand>;