mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-22 09:08:39 +08:00
7 lines
156 B
C#
7 lines
156 B
C#
namespace mRemoteNG.Config.Serializers
|
|
{
|
|
public interface IDeserializer<in TIn, out TOut>
|
|
{
|
|
TOut Deserialize(TIn serializedData);
|
|
}
|
|
} |