
To better align with commonly used terminology in industry renamed all references from Skin -> Theme.
12 lines
210 B
C#
12 lines
210 B
C#
using Oqtane.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public interface IThemeService
|
|
{
|
|
Task<List<Theme>> GetThemesAsync();
|
|
}
|
|
}
|