Interface ICommand
Represents a command interface that can be validated.
Inherited Members
Namespace: Innovt.Core.Cqrs.Commands
Assembly: Innovt.Core.dll
Syntax
public interface ICommand : IValidatableObject
Remarks
This interface is used to define a command, which represents an action or operation that can be executed. Commands often include data or parameters needed to perform the action. Implementing the IValidatableObject interface allows for command validation.