CS
This commit is contained in:
25
CS/CS1 PoloClubApp_RensPastoor/IWearable.cs
Normal file
25
CS/CS1 PoloClubApp_RensPastoor/IWearable.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
///
|
||||
/// class: IWearable.cs
|
||||
///
|
||||
///This file defines the IWearable interface, which specifies a method to get the water resistance level of wearable devices.
|
||||
///It is implemented by classes representing wearable devices like smartwatches and fitness trackers.
|
||||
///
|
||||
/// Name: Rens Pastoor
|
||||
/// Studentnumber: 555408
|
||||
/// Date: 11 May 2025
|
||||
///
|
||||
///Version: 1
|
||||
///
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Runtime.Remoting.Messaging;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PoloClubApp {
|
||||
interface IWearable {
|
||||
///Returns the water resistance level of the wearable device in meters.
|
||||
int GetWaterResistanceMeters();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user