RobotApp/RobotApp/Services/Robot/Actions/RobotMutedLoadOffAction.cs
Đăng Nguyễn ab5d3e1a1a update
2025-10-22 11:16:19 +07:00

15 lines
336 B
C#

namespace RobotApp.Services.Robot.Actions;
public class RobotMutedLoadOffAction(IServiceProvider ServiceProvider) : RobotAction(ServiceProvider)
{
protected override Task StartAction()
{
return base.StartAction();
}
protected override Task ExecuteAction()
{
return base.ExecuteAction();
}
}