sharee.bike-App/SharedBusinessLogic/Model/Stations/StationNS/Operator/IBikeGroupCol.cs
2024-04-09 12:53:23 +02:00

10 lines
284 B
C#

using System.Collections.Generic;
namespace ShareeBike.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; }
}
}