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(); } public Guid? ListDataModelGuid { get; set; } public string ListPropertyPath { get; set; } public int ListOperator { get; set; } } }