Files
Umbraco-CMS/src/Umbraco.Web/Models/TemplateQuery/OperathorTerm.cs

26 lines
651 B
C#
Raw Normal View History

2014-06-08 09:51:06 -07:00
using System.Collections.Generic;
namespace Umbraco.Web.Models.TemplateQuery
2014-06-08 09:51:06 -07:00
{
public class OperathorTerm
2014-06-08 09:51:06 -07:00
{
public OperathorTerm()
{
Name = "is";
Operathor = Operathor.Equals;
AppliesTo = new [] { "string" };
}
public OperathorTerm(string name, Operathor operathor, IEnumerable<string> appliesTo)
{
Name = name;
Operathor = operathor;
AppliesTo = appliesTo;
}
public string Name { get; set; }
public Operathor Operathor { get; set; }
public IEnumerable<string> AppliesTo { get; set; }
}
2017-07-20 11:21:28 +02:00
}