1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

10 lines
321 B
C#

using Artemis.Storage.Migrator.Legacy.Entities.Profile.Nodes;
namespace Artemis.Storage.Migrator.Legacy.Entities.Profile.Conditions;
public class StaticConditionEntity : IConditionEntity
{
public int PlayMode { get; set; }
public int StopMode { get; set; }
public NodeScriptEntity? Script { get; set; }
}