mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
12 lines
387 B
C#
12 lines
387 B
C#
using Artemis.Storage.Entities.Profile.Abstract;
|
|
using Artemis.Storage.Entities.Profile.Nodes;
|
|
|
|
namespace Artemis.Storage.Entities.Profile.Conditions
|
|
{
|
|
public class EventConditionEntity : IConditionEntity
|
|
{
|
|
public int EventOverlapMode { get; set; }
|
|
public DataModelPathEntity EventPath { get; set; }
|
|
public NodeScriptEntity Script { get; set; }
|
|
}
|
|
} |