using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class MqttClientStateDto { public string ClientId { get; set; } public bool IsConnected { get; set; } } }