|
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; }
|
|
}
|
|
}
|