Skip to content

Commit

Permalink
Merge pull request #133 from MorgeMoensch/patch-1
Browse files Browse the repository at this point in the history
Add guid as possible Type in Comment
  • Loading branch information
tghamm authored Aug 31, 2024
2 parents 030a52f + 5b41da9 commit 45c6e54
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class SystemTextJsonFilterRule : IFilterRule
/// </value>
public List<SystemTextJsonFilterRule> Rules { get; set; }
/// <summary>
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", and "boolean".
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", "guid", and "boolean".
/// </summary>
/// <value>
/// The type.
Expand Down
2 changes: 1 addition & 1 deletion Castle.DynamicLinqQueryBuilder/FilterRule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class FilterRule : IFilterRule
/// </value>
public List<FilterRule> Rules { get; set; }
/// <summary>
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", and "boolean".
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", "guid", and "boolean".
/// </summary>
/// <value>
/// The type.
Expand Down
2 changes: 1 addition & 1 deletion Castle.DynamicLinqQueryBuilder/JsonNetFilterRule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class JsonNetFilterRule : IFilterRule
/// </value>
public List<JsonNetFilterRule> Rules { get; set; }
/// <summary>
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", and "boolean".
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", "guid", and "boolean".
/// </summary>
/// <value>
/// The type.
Expand Down
2 changes: 1 addition & 1 deletion Castle.DynamicLinqQueryBuilder/QueryBuilderFilterRule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class QueryBuilderFilterRule : IFilterRule
/// </value>
public List<QueryBuilderFilterRule> Rules { get; set; }
/// <summary>
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", and "boolean".
/// Gets or sets the type. Supported values are "integer", "double", "string", "date", "datetime", "guid", and "boolean".
/// </summary>
/// <value>
/// The type.
Expand Down

0 comments on commit 45c6e54

Please sign in to comment.