mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
22 lines
740 B
C#
22 lines
740 B
C#
using System;
|
|
|
|
namespace Artemis.Core.Plugins.LayerElement
|
|
{
|
|
public class LayerElementDescriptor
|
|
{
|
|
internal LayerElementDescriptor(string displayName, string description, string icon, Type layerElementType, LayerElementProvider layerElementProvider)
|
|
{
|
|
DisplayName = displayName;
|
|
Description = description;
|
|
Icon = icon;
|
|
LayerElementType = layerElementType;
|
|
LayerElementProvider = layerElementProvider;
|
|
}
|
|
|
|
public string DisplayName { get; }
|
|
public string Description { get; }
|
|
public string Icon { get; }
|
|
public Type LayerElementType { get; }
|
|
public LayerElementProvider LayerElementProvider { get; }
|
|
}
|
|
} |