21 lines
516 B
C#
21 lines
516 B
C#
using RobotNet10.MqttConnection;
|
|
using RobotNet10.RobotApp.Services.Robot.Connection.Models;
|
|
|
|
namespace RobotNet10.RobotApp.Services.ConfigManager;
|
|
|
|
/// <summary>
|
|
/// Service for managing application configurations
|
|
/// </summary>
|
|
public interface IConnectionConfig
|
|
{
|
|
/// <summary>
|
|
/// Get VDA5050 Protocol configuration
|
|
/// </summary>
|
|
VDA5050ProtocolConfig GetVDA5050Config();
|
|
|
|
/// <summary>
|
|
/// Get MQTT configuration
|
|
/// </summary>
|
|
MQTTConfig GetMqttConfig();
|
|
}
|