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
9 lines
221 B
C#
9 lines
221 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public abstract class EffectsEntity : PropertiesEntity
|
|
{
|
|
public List<LayerEffectEntity> LayerEffects { get; set; }
|
|
}
|
|
} |