Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="cdmdotnet Limited">
4 : // // Copyright cdmdotnet Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 : using Cqrs.Messages;
11 :
12 : namespace Cqrs.Bus
13 : {
14 : public class RouteHandlerDelegate
15 0 : {
16 : public Action<IMessage> Delegate { get; set; }
17 :
18 : public Type TargetedType { get; set; }
19 : }
20 : }
|