19 lines
377 B
C#
19 lines
377 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shelly.DTO.Shelly1PM
|
|
{
|
|
public class BaseServiceDto
|
|
{
|
|
/// <summary>
|
|
/// Connection State
|
|
/// </summary>
|
|
[JsonProperty("connected")]
|
|
public bool Connected { get; set; }
|
|
}
|
|
}
|