mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
428 B
C#
15 lines
428 B
C#
using Artemis.Core;
|
|
using Artemis.UI.Shared.Services.Interfaces;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor.ProfileTree
|
|
{
|
|
public class LayerTreeItemViewModel : TreeItemViewModel
|
|
{
|
|
public LayerTreeItemViewModel(TreeItemViewModel? parent, Layer layer, IWindowService windowService) : base(parent, layer, windowService)
|
|
{
|
|
Layer = layer;
|
|
}
|
|
|
|
public Layer Layer { get; }
|
|
}
|
|
} |