--- trunk/libxmltv/Core/PropertyList.cs 2013/03/10 14:28:57 110 +++ trunk/libxmltv/Core/PropertyList.cs 2013/03/10 17:41:52 118 @@ -7,14 +7,14 @@ namespace libxmltv.Core { [Serializable] - public class PropertyList : PropertyList, IPropertyList + internal class PropertyList : PropertyList, IPropertyList { public PropertyList() :base() { } public PropertyList(IEnumerable> collection) : base(collection) { } public PropertyList(int capacity) : base(capacity) { } } [Serializable] - public class PropertyList : IPropertyList + internal class PropertyList : IPropertyList { private PropertyCollection> properties; public PropertyList() { properties = new PropertyCollection>(); }