15 lines
337 B
C#
15 lines
337 B
C#
namespace RobotApp.Services.Robot.Actions;
|
|
|
|
public class RobotStartChargingAction(IServiceProvider ServiceProvider) : RobotAction(ServiceProvider)
|
|
{
|
|
protected override Task StartAction()
|
|
{
|
|
return base.StartAction();
|
|
}
|
|
|
|
protected override Task ExecuteAction()
|
|
{
|
|
return base.ExecuteAction();
|
|
}
|
|
}
|