mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Folders - Added properties to folders Layer effects - Expanded to folders Layer effects - Added shape clipping
28 lines
749 B
C#
28 lines
749 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using LiteDB;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class FolderEntity : EffectsEntity
|
|
{
|
|
public FolderEntity()
|
|
{
|
|
PropertyEntities = new List<PropertyEntity>();
|
|
Conditions = new List<ProfileConditionEntity>();
|
|
LayerEffects = new List<LayerEffectEntity>();
|
|
ExpandedPropertyGroups = new List<string>();
|
|
}
|
|
|
|
public Guid Id { get; set; }
|
|
public Guid ParentId { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
[BsonRef("ProfileEntity")]
|
|
public ProfileEntity Profile { get; set; }
|
|
|
|
public Guid ProfileId { get; set; }
|
|
}
|
|
} |