mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 04:26:49 +00:00
#658 Initializes config properties in constructor(s)
This commit is contained in:
parent
fcdee3b9fd
commit
6ab4d4d090
2 changed files with 17 additions and 0 deletions
|
|
@ -51,6 +51,13 @@ namespace PepperDash.Essentials.Core.Config
|
|||
|
||||
[JsonProperty("rooms")]
|
||||
public List<DeviceConfig> Rooms { get; set; }
|
||||
|
||||
|
||||
public EssentialsConfig()
|
||||
: base()
|
||||
{
|
||||
Rooms = new List<DeviceConfig>();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue