fa258cf09b
-Update libreria x Pro3Em
14 lines
260 B
C#
14 lines
260 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace EgwProxy.Shelly.DTO
|
|
{
|
|
public class BaseServiceDto
|
|
{
|
|
/// <summary>
|
|
/// Connection State
|
|
/// </summary>
|
|
[JsonProperty("connected")]
|
|
public bool Connected { get; set; }
|
|
}
|
|
}
|