mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
9 lines
191 B
C#
9 lines
191 B
C#
using System.Security;
|
|
|
|
namespace mRemoteNG.Config.Serializers
|
|
{
|
|
public interface ISecureSerializer<in TIn, out TOut>
|
|
{
|
|
TOut Serialize(TIn model, SecureString key);
|
|
}
|
|
} |