11 lines
175 B
C#
11 lines
175 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Oqtane.Themes
|
|
{
|
|
public interface ITheme
|
|
{
|
|
Dictionary<string, string> Properties { get; }
|
|
}
|
|
}
|