namespace Brizco.Domain.CommandQueries.Commands; public sealed record CreateActivityCommand( ActivityStatus Status, DateTime DoneAt, string PerformanceDescription, TaskType Type, string Title, string Description, bool IsRelatedToShift, bool IsRelatedToRole, bool IsRelatedToPerson, bool IsDisposable, DateTime SetFor, bool HasDisposed, int Amount, PurchaseAmountType AmountType, List Users, List Shifts, List Roles) : IRequest; public sealed record UpdateActivityCommand(Guid Id, ActivityStatus Status, DateTime DoneAt, string PerformanceDescription, TaskType Type, string Title, string Description, bool IsRelatedToShift, bool IsRelatedToRole, bool IsRelatedToPerson, bool IsDisposable, DateTime SetFor, bool HasDisposed, int Amount, PurchaseAmountType AmountType, List Users, List Shifts, List Roles) : IRequest; public sealed record DeleteActivityCommand(Guid Id) : IRequest;