-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIDomainCommand.cs
More file actions
23 lines (21 loc) · 955 Bytes
/
IDomainCommand.cs
File metadata and controls
23 lines (21 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
namespace RapidField.SolidInstruments.Command
{
/// <summary>
/// Represents a command to perform a domain action.
/// </summary>
public interface IDomainCommand : ILabeledCommand
{
}
/// <summary>
/// Represents a command to perform a domain action that emits a result when processed.
/// </summary>
/// <typeparam name="TResult">
/// The type of the result that is emitted when processing the command.
/// </typeparam>
public interface IDomainCommand<out TResult> : ILabeledCommand<TResult>
{
}
}