1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
2020-08-21 22:32:46 +02:00

12 lines
334 B
C#

using System;
using System.Linq.Expressions;
using Artemis.Core.Plugins.DataModelExpansions;
namespace Artemis.Core.Models.Profile.Conditions
{
public class DisplayCondition
{
public Expression<Func<DataModel, bool>> ExpressionTree { get; set; }
public DisplayConditionGroup RootGroup { get; set; }
}
}