mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
625 B
C#
19 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Artemis.Storage.Entities.Profile.Conditions;
|
|
|
|
namespace Artemis.Storage.Entities.Profile.Abstract
|
|
{
|
|
public abstract class RenderElementEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid ParentId { get; set; }
|
|
|
|
public List<LayerEffectEntity> LayerEffects { get; set; }
|
|
public List<PropertyEntity> PropertyEntities { get; set; }
|
|
public List<string> ExpandedPropertyGroups { get; set; }
|
|
|
|
public DataModelConditionGroupEntity DisplayCondition { get; set; }
|
|
public TimelineEntity Timeline { get; set; }
|
|
}
|
|
} |