Starting writing a few unit tests for the new DynamicNode codebase. Will of course leave the original DynamicNode stuff in its current place for backwards compatibility but will deprecate many of the classes which will call the new ones.
10 lines
169 B
C#
10 lines
169 B
C#
using System.Linq.Expressions;
|
|
|
|
namespace Umbraco.Core.Dynamics
|
|
{
|
|
internal class DynamicOrdering
|
|
{
|
|
public Expression Selector;
|
|
public bool Ascending;
|
|
}
|
|
} |