mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-25 19:38:37 +08:00
13 lines
313 B
C#
13 lines
313 B
C#
using System;
|
|
using System.Data.SqlClient;
|
|
|
|
namespace mRemoteNG.Config.DatabaseConnectors
|
|
{
|
|
public interface IDatabaseConnector : IDisposable
|
|
{
|
|
bool IsConnected { get; }
|
|
void Connect();
|
|
void Disconnect();
|
|
void AssociateItemToThisConnector(SqlCommand sqlCommand);
|
|
}
|
|
} |