mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Display conditions - Added setting to display current values while selecting condition targets
21 lines
719 B
C#
21 lines
719 B
C#
using System;
|
|
using Artemis.Storage.Entities.Profile.Abstract;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class DisplayConditionPredicateEntity : DisplayConditionPartEntity
|
|
{
|
|
public int PredicateType { get; set; }
|
|
public Guid? LeftDataModelGuid { get; set; }
|
|
public string LeftPropertyPath { get; set; }
|
|
|
|
public Guid? RightDataModelGuid { get; set; }
|
|
public string RightPropertyPath { get; set; }
|
|
|
|
public string OperatorType { get; set; }
|
|
public Guid? OperatorPluginGuid { get; set; }
|
|
|
|
// Stored as a string to be able to control serialization and deserialization ourselves
|
|
public string RightStaticValue { get; set; }
|
|
}
|
|
} |