DSInternals/Src/DSInternals.Replication.Model/ReplicaObjectCollection.cs

17 lines
373 B
C#
Raw Normal View History

2015-12-26 22:44:43 +00:00
using System.Collections.Generic;
namespace DSInternals.Replication.Model
{
public class ReplicaObjectCollection : List<ReplicaObject>
{
// TODO: Move parent as member.
public ReplicaObjectCollection() : base()
{
}
public ReplicaObjectCollection(int numObjects)
: base(numObjects)
{
}
}
}