feat(wip): seeds feature for IR signal bridge map

This commit is contained in:
jdevito
2023-10-07 16:51:27 -05:00
parent 8612fab4fe
commit c0b0b35f6d
4 changed files with 48 additions and 25 deletions

View File

@@ -224,12 +224,18 @@ namespace PepperDash.Essentials.Core
/// </summary>
public class IrOutPortConfig
{
[JsonProperty("port")]
public IROutputPort Port { get; set; }
[JsonProperty("fileName")]
public string FileName { get; set; }
[JsonProperty("useBridgeJoinMap")]
public bool UseBridgeJoinMap { get; set; }
public IrOutPortConfig()
{
FileName = "";
FileName = "";
}
}
}