mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
21 lines
763 B
C#
21 lines
763 B
C#
using Artemis.Core.Models.Profile.Abstract;
|
|
using Artemis.UI.Ninject.Factories;
|
|
using Artemis.UI.Services.Interfaces;
|
|
|
|
namespace Artemis.UI.Screens.Module.ProfileEditor.ProfileTree.TreeItem
|
|
{
|
|
public class LayerViewModel : TreeItemViewModel
|
|
{
|
|
public LayerViewModel(TreeItemViewModel parent,
|
|
ProfileElement folder,
|
|
IProfileEditorService profileEditorService,
|
|
IDialogService dialogService,
|
|
IFolderViewModelFactory folderViewModelFactory,
|
|
ILayerViewModelFactory layerViewModelFactory) :
|
|
base(parent, folder, profileEditorService, dialogService, folderViewModelFactory, layerViewModelFactory)
|
|
{
|
|
}
|
|
|
|
public override bool SupportsChildren => false;
|
|
}
|
|
} |