mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
531 B
C#
19 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Artemis.Storage.Entities.Profile.Abstract;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class DisplayConditionListPredicateEntity : DisplayConditionPartEntity
|
|
{
|
|
public DisplayConditionListPredicateEntity()
|
|
{
|
|
Children = new List<DisplayConditionPartEntity>();
|
|
}
|
|
|
|
public Guid? ListDataModelGuid { get; set; }
|
|
public string ListPropertyPath { get; set; }
|
|
|
|
public int ListOperator { get; set; }
|
|
}
|
|
} |