Normalize line endings.
[mono.git] / mcs / class / System.ServiceModel.Discovery / System.ServiceModel.Discovery.Configuration / ContractTypeNameElementCollection.cs
1 using System;
2 using System.ComponentModel;
3 using System.Configuration;
4 using System.ServiceModel.Configuration;
5
6 namespace System.ServiceModel.Discovery.Configuration
7 {
8         [ConfigurationCollection (typeof(ContractTypeNameElement))]
9         public sealed class ContractTypeNameElementCollection : ServiceModelConfigurationElementCollection<ContractTypeNameElement>
10         {
11                 public ContractTypeNameElementCollection ()
12                 {
13                 }
14         }
15 }
16