1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2026-03-24 18:28:49 +00:00

15 lines
403 B
C#

using System;
using System.Collections.Generic;
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 IConditionEntity? DisplayCondition { get; set; }
public TimelineEntity? Timeline { get; set; }
}