This commit is contained in:
Rens Pastoor
2025-06-12 11:20:08 +02:00
parent 37013ec1fc
commit 1086760c4a
21 changed files with 444 additions and 256 deletions

View File

@@ -18,8 +18,14 @@ using System.Text;
using System.Threading.Tasks;
namespace PoloClubApp {
interface IWearable {
///Returns the water resistance level of the wearable device in meters.
/// <summary>
/// Interface for wearable devices that have water resistance capability.
/// </summary>
public interface IWearable{
/// <summary>
/// Gets the water resistance rating of the wearable device.
/// </summary>
/// <returns>Water resistance in meters.</returns>
int GetWaterResistanceMeters();
}
}
}