using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Attendance.CheckIn; public sealed record Command(int MemberID, string? Greeting) : ICommand<Result<Response>>;