mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
21 lines
557 B
C#
21 lines
557 B
C#
namespace mRemoteNG.Config.Serializers.MsSql
|
|
{
|
|
public class LocalConnectionPropertiesModel
|
|
{
|
|
/// <summary>
|
|
/// The unique Id of this tree node
|
|
/// </summary>
|
|
public string ConnectionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates whether this connection is connected
|
|
/// </summary>
|
|
public bool Connected { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates whether this container is expanded in the tree
|
|
/// </summary>
|
|
public bool Expanded { get; set; }
|
|
}
|
|
}
|