Files
parr_api/PARR.DAL/Services/Interfaces/IRobotConfigurationService.cs

10 lines
206 B
C#

using PARR.DAL.Models;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IRobotConfigurationService : IBaseService<RobotConfiguration>
{
}
}