cs and c
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user