mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
11 lines
216 B
C#
11 lines
216 B
C#
using System.Collections.Generic;
|
|
using Oqtane.Interfaces;
|
|
|
|
namespace Oqtane.Repository.Databases.Interfaces
|
|
{
|
|
public interface IMultiDatabase
|
|
{
|
|
public IOqtaneDatabase ActiveDatabase { get; }
|
|
}
|
|
}
|