Essentials/src/PepperDash.Essentials.Core/Config/SourceDevicePropertiesConfigBase.cs
copilot-swe-agent[bot] 7987eb8f9b docs: complete XML documentation for all projects with inheritdoc tags
Co-authored-by: andrew-welker <1765622+andrew-welker@users.noreply.github.com>
2025-07-22 15:53:01 +00:00

19 lines
No EOL
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core.Config
{
/// <summary>
/// Represents a SourceDevicePropertiesConfigBase
/// </summary>
public class SourceDevicePropertiesConfigBase
{
/// <summary>
/// Gets or sets the DisableSharing
/// </summary>
public bool DisableSharing { get; set; }
}
}