Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendy committed Mar 12, 2019
1 parent 0a0cc89 commit 424b8d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Our.Umbraco.Look/NodeQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
namespace Our.Umbraco.Look
{
/// <summary>
/// All property clauses are ANDed
/// All properies are optional, when set clauses are ANDed
/// </summary>
public class NodeQuery
{
/// <summary>
/// If set, then items returned must be of this type
/// If set, then items returned must be of this type (will take precedence over TypeAny)
/// </summary>
public PublishedItemType? Type { get; set; } = null;

Expand All @@ -26,7 +26,7 @@ public class NodeQuery
public DetachedQuery DetachedQuery { get; set; } = DetachedQuery.IncludeDetached;

/// <summary>
/// If set, then items returned must be of this culture
/// If set, then items returned must be of this culture (will take precedence over CultureAny)
/// </summary>
public CultureInfo Culture { get; set; } = null;

Expand All @@ -36,7 +36,7 @@ public class NodeQuery
public CultureInfo[] CultureAny { get; set; } = null;

/// <summary>
/// If set, then items returned must be of this alias
/// If set, then items returned must be of this alias (will take precedence over AliasAny)
/// </summary>
public string Alias { get; set; } = null;

Expand Down

0 comments on commit 424b8d4

Please sign in to comment.