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