added DatabaseService to get list of database types from server

This commit is contained in:
Shaun Walker
2021-05-11 15:56:41 -04:00
parent d88bd87aea
commit bae6120e3b
6 changed files with 243 additions and 219 deletions

View 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();
}
}