1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.Storage/Entities/Profile/DisplayConditionListPredicateEntity.cs
Robert cb69760971 UI - Moved exception viewer to its own seperate window
Conditions - Started adding list conditions
2020-08-11 22:47:41 +02:00

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; }
}
}