PageRenderTime 38ms CodeModel.GetById 20ms RepoModel.GetById 3ms app.codeStats 0ms

/src/ClusterConcept.Shared/Model/Node/InitNodeConfiguration.cs

https://bitbucket.org/Fijo/clusterconcept
C# | 11 lines | 10 code | 1 blank | 0 comment | 0 complexity | 00403233004197b326da4987b980be6f MD5 | raw file
  1. using System.Collections.Generic;
  2. using System.Net;
  3. using Fijo.Infrastructure.Documentation.Attributes.DesignPattern;
  4. namespace ClusterConcept.Shared.Model.Node {
  5. [Dto]
  6. public class InitNodeConfiguration {
  7. public IList<EndPoint> NodeAddresses;
  8. public EndPoint OwnNodeAddress;
  9. }
  10. }