mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-31 09:43:46 +00:00
10 lines
305 B
C#
10 lines
305 B
C#
using Artemis.Storage.Legacy.Entities.Profile.Nodes;
|
|
|
|
namespace Artemis.Storage.Legacy.Entities.Profile.Conditions;
|
|
|
|
internal class StaticConditionEntity : IConditionEntity
|
|
{
|
|
public int PlayMode { get; set; }
|
|
public int StopMode { get; set; }
|
|
public NodeScriptEntity? Script { get; set; }
|
|
} |