using System.Collections.Generic; namespace TINK.Model.Stations.StationNS.Operator { public interface IBikeGroupCol : IEnumerable { /// Holds the count of bikes available of given type at station. int AvailableCount { get; } } }