sharee.bike-App/SharedBusinessLogic/Model/Bikes/BikeInfoNS/CopriLock/IBikeInfoMutable.cs

10 lines
227 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model.Bikes.BikeInfoNS.CopriLock
2022-08-30 15:42:25 +02:00
{
2022-09-06 16:08:19 +02:00
public interface IBikeInfoMutable : BikeInfoNS.BC.IBikeInfoMutable
{
ILockInfoMutable LockInfo { get; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
IBookingFinishedModel BookingFinishedModel { get; }
}
2022-08-30 15:42:25 +02:00
}