Yuna/Yuna.Website/Yuna.Website.Server/Model/YandexDevice/YandexParameter.cs

14 lines
301 B
C#

using System.Text.Json.Serialization;
namespace Yuna.Website.Server.Model.YandexDevice
{
public class YandexParameter
{
[JsonPropertyName("instance")]
public string Instance { get; set; }
[JsonPropertyName("unit")]
public string Unit { get; set; }
}
}