mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
14 lines
406 B
C#
14 lines
406 B
C#
using System;
|
|
using Artemis.Core.Models.Profile.Conditions.Abstract;
|
|
|
|
namespace Artemis.Core.Models.Profile.Conditions
|
|
{
|
|
public class DisplayConditionPredicate : DisplayConditionPart
|
|
{
|
|
public Guid DataModelGuid { get; set; }
|
|
public string PropertyPath { get; set; }
|
|
|
|
public DisplayConditionOperator Operator { get; set; }
|
|
public object Value { get; set; }
|
|
}
|
|
} |