namespace RhythmBase.Components.Conditions { /// /// Represents a custom condition with an expression. /// public class CustomCondition : BaseConditional { /// /// Initializes a new instance of the class. /// public CustomCondition() { Type = ConditionType.Custom; } /// /// Gets or sets the expression for the custom condition. /// /// The expression as a string. public string Expression { get; set; } = ""; /// /// Gets the type of the condition. /// /// The type of the condition, which is . public override ConditionType Type { get; } } }