Files

23 lines
509 B
C#

using Newtonsoft.Json;
namespace EgwProxy.Shelly.DTO
{
/// <summary>
/// Info about sw update
/// </summary>
public class UpdateDto
{
/// <summary>
/// Shown only if beta update is available
/// </summary>
[JsonProperty("beta")]
public VersDto Beta { get; set; }
/// <summary>
/// Shown only if beta update is available
/// </summary>
[JsonProperty("stable")]
public VersDto Stable { get; set; }
}
}