mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
21 lines
568 B
C#
21 lines
568 B
C#
using System;
|
|
using Artemis.Core.Plugins.LayerBrushes;
|
|
|
|
namespace Artemis.Core.Models.Profile
|
|
{
|
|
/// <summary>
|
|
/// A reference to a <see cref="LayerBrushDescriptor" />
|
|
/// </summary>
|
|
public class LayerBrushReference
|
|
{
|
|
/// <summary>
|
|
/// The GUID of the plugin the brush descriptor resides in
|
|
/// </summary>
|
|
public Guid BrushPluginGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The full type name of the brush descriptor
|
|
/// </summary>
|
|
public string BrushType { get; set; }
|
|
}
|
|
} |