mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
15 lines
371 B
C#
15 lines
371 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Security;
|
|
|
|
namespace mRemoteNG.Credential.Repositories
|
|
{
|
|
public interface ICredentialRepositoryConfig : INotifyPropertyChanged
|
|
{
|
|
Guid Id { get; }
|
|
string Title { get; set; }
|
|
string TypeName { get; }
|
|
string Source { get; set; }
|
|
SecureString Key { get; set; }
|
|
}
|
|
} |