Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System.Collections.Generic;
10 :
11 : namespace Cqrs.Bus
12 : {
13 : /// <summary>
14 : /// A collection of <see cref="RouteHandlerDelegate"/>.
15 : /// </summary>
16 : public class Route
17 1 : {
18 : /// <summary>
19 : /// Gets or sets the <see cref="RouteHandlerDelegate"/>.
20 : /// </summary>
21 : public IList<RouteHandlerDelegate> Handlers { get; set; }
22 : }
23 : }
|