mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-28 07:43:06 +00:00
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; }
|
|
}
|
|
}
|