using System;
using Artemis.Core.Plugins.LayerBrushes;
namespace Artemis.Core.Models.Profile
{
///
/// A reference to a
///
public class LayerBrushReference
{
///
/// The GUID of the plugin the brush descriptor resides in
///
public Guid BrushPluginGuid { get; set; }
///
/// The full type name of the brush descriptor
///
public string BrushType { get; set; }
}
}