-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIMessageBase.cs
More file actions
33 lines (30 loc) · 1.1 KB
/
IMessageBase.cs
File metadata and controls
33 lines (30 loc) · 1.1 KB
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
32
33
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Command;
using System;
namespace RapidField.SolidInstruments.Messaging
{
/// <summary>
/// Represents a message.
/// </summary>
public interface IMessageBase : ICommandBase
{
/// <summary>
/// Gets or sets a unique identifier for the message.
/// </summary>
public Guid Identifier
{
get;
set;
}
/// <summary>
/// Gets or sets instructions and contextual information relating to processing for the current <see cref="IMessageBase" />.
/// </summary>
public IMessageProcessingInformation ProcessingInformation
{
get;
set;
}
}
}