mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
12 lines
334 B
C#
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; }
|
|
}
|
|
} |