mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
12 lines
320 B
C#
12 lines
320 B
C#
using System;
|
|
|
|
namespace mRemoteNG.Config.Serializers.ConnectionSerializers.MsSql
|
|
{
|
|
public class SqlConnectionListMetaData
|
|
{
|
|
public string Name { get; set; }
|
|
public string Protected { get; set; }
|
|
public bool Export { get; set; }
|
|
public Version ConfVersion { get; set; }
|
|
}
|
|
} |