mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 21:04:48 +00:00
17 lines
372 B
C#
17 lines
372 B
C#
extern alias Full;
|
|
|
|
using System.Collections.Generic;
|
|
using Full.Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
public class OccupancyAggregatorConfig
|
|
{
|
|
[JsonProperty("deviceKeys")] public List<string> DeviceKeys { get; set; }
|
|
|
|
public OccupancyAggregatorConfig()
|
|
{
|
|
DeviceKeys = new List<string>();
|
|
}
|
|
}
|
|
} |