-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathICommandBase.cs
More file actions
31 lines (28 loc) · 996 Bytes
/
ICommandBase.cs
File metadata and controls
31 lines (28 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System;
namespace RapidField.SolidInstruments.Command
{
/// <summary>
/// Represents a command.
/// </summary>
public interface ICommandBase
{
/// <summary>
/// Gets or sets a unique identifier that is assigned to related commands.
/// </summary>
public Guid CorrelationIdentifier
{
get;
set;
}
/// <summary>
/// Gets the type of the result that is emitted when processing the command.
/// </summary>
public Type ResultType
{
get;
}
}
}