recrownedgtk/RecrownedAthenaeum/UI/SkinSystem/Definitions/ISkinDefinition.cs
2019-01-27 17:39:18 -06:00

16 lines
409 B
C#

using System;
namespace RecrownedAthenaeum.UI.SkinSystem.Definitions
{
/// <summary>
/// A definition containing the data for the skin system. Should be in data transfer object model.
/// </summary>
public interface ISkinDefinitionData
{
/// <summary>
/// The module type this definition is definining.
/// </summary>
Type UIModuleType { get; }
}
}