Files
Intentor/Intentor/Models/EntityState.cs
T

19 lines
475 B
C#

using System.Text.Json.Serialization;
namespace Intentor.Models;
public class EntityState
{
[JsonPropertyName("entity_id")]
public string EntityId { get; set; } = string.Empty;
[JsonPropertyName("state")]
public string State { get; set; } = string.Empty;
[JsonPropertyName("last_changed")]
public DateTime LastChanged { get; set; }
[JsonPropertyName("attributes")]
public Dictionary<string, object> Attributes { get; set; } = new();
}