mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
10 lines
278 B
C#
10 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; }
|
|
}
|
|
}
|