mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 18:44:23 +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; }
|
|
}
|
|
}
|