12 lines
307 B
C#
12 lines
307 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TheXamlGuy.Framework.WPF
|
|
{
|
|
public class RouteDescriptorCollection : List<IRouteDescriptor>, IRouteDescriptorCollection
|
|
{
|
|
public RouteDescriptorCollection(IEnumerable<IRouteDescriptor> collection) : base(collection)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |