mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
23 lines
751 B
C#
23 lines
751 B
C#
using System;
|
|
using Artemis.Core.Plugins.Abstract;
|
|
|
|
namespace Artemis.Core.Plugins.LayerBrush
|
|
{
|
|
public class LayerBrushDescriptor
|
|
{
|
|
internal LayerBrushDescriptor(string displayName, string description, string icon, Type layerBrushType, LayerBrushProvider layerBrushProvider)
|
|
{
|
|
DisplayName = displayName;
|
|
Description = description;
|
|
Icon = icon;
|
|
LayerBrushType = layerBrushType;
|
|
LayerBrushProvider = layerBrushProvider;
|
|
}
|
|
|
|
public string DisplayName { get; }
|
|
public string Description { get; }
|
|
public string Icon { get; }
|
|
public Type LayerBrushType { get; }
|
|
public LayerBrushProvider LayerBrushProvider { get; }
|
|
}
|
|
} |