added DatabaseService to get list of database types from server
This commit is contained in:
11
Oqtane.Client/Services/Interfaces/IDatabaseService.cs
Normal file
11
Oqtane.Client/Services/Interfaces/IDatabaseService.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Oqtane.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Oqtane.Services
|
||||
{
|
||||
public interface IDatabaseService
|
||||
{
|
||||
Task<List<Database>> GetDatabasesAsync();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user