Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CsvConnectionsSerializerRdmFormat.cs « RemoteDesktopManager « Csv « ConnectionSerializers « Serializers « Config « mRemoteNG - github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3fe0afbfd523bfebbe10a6bca46adc38f1d7aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#region

using System;
using mRemoteNG.Connection;

#endregion

namespace mRemoteNG.Config.Serializers.ConnectionSerializers.Csv.RemoteDesktopManager;

public partial class CsvConnectionsDeserializerRdmFormat : ISerializer<ConnectionInfo, string>
{
    public string Serialize(ConnectionInfo model)
    {
        throw new NotImplementedException();
    }

    public Version Version { get; }
}