oqtane.framework/Oqtane.Client/Themes/ITheme.cs

11 lines
175 B
C#

using System;
using System.Collections.Generic;
namespace Oqtane.Themes
{
public interface ITheme
{
Dictionary<string, string> Properties { get; }
}
}