10 lines
164 B
Plaintext
10 lines
164 B
Plaintext
|
|
namespace DTS.Common.Enums.Database
|
||
|
|
{
|
||
|
|
public enum DbType
|
||
|
|
{
|
||
|
|
RemoteOnly = 0,
|
||
|
|
LocalOnly = 1,
|
||
|
|
RemoteLocalHybrid = 2
|
||
|
|
}
|
||
|
|
}
|