mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 10:54:59 +00:00
25 lines
566 B
C#
25 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class DigitalLoggerPropertiesConfig
|
|
{
|
|
public CommunicationMonitorConfig CommunicationMonitorProperties { get; set; }
|
|
|
|
public ControlPropertiesConfig Control { get; set; }
|
|
public string userName { get; set; }
|
|
public string password { get; set; }
|
|
public string address { get; set; }
|
|
}
|
|
|
|
} |