using System.Collections.Generic; namespace Dbscan { /// /// A collection of items that have been clustered by the algorithm. /// /// The type of elements in the cluster. public class Cluster { /// /// The items that have been clustered. /// public IReadOnlyList Objects { get; set; } } }