Skip to content

Commit

Permalink
fix(api/models): property name to match api
Browse files Browse the repository at this point in the history
  • Loading branch information
pratik136 committed Jul 21, 2023
1 parent 37c1a8d commit 89675f6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class AutomationAction
/// <summary>
/// Specifies which columns to include in message
/// </summary>
private IList<long> includeColumnIds;
private IList<long> includedColumnIds;

/// <summary>
/// Include discussions in email
Expand Down Expand Up @@ -114,10 +114,10 @@ public bool? IncludeAttachments
/// Gets the list of included columns
/// </summary>
/// <returns> the list of included columns </returns>
public IList<long> IncludeColumnIds
public IList<long> IncludedColumnIds
{
get { return includeColumnIds; }
set { includeColumnIds = value; }
get { return includedColumnIds; }
set { includedColumnIds = value; }
}

/// <summary>
Expand Down

0 comments on commit 89675f6

Please sign in to comment.