sharee.bike-App/TINKLib/Model/Stations/StationNS/Operator/IBikeGroupCol.cs
2023-05-09 08:47:52 +02:00

11 lines
278 B
C#

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