Skip to content

Commit

Permalink
Remove unused Actions property
Browse files Browse the repository at this point in the history
This property was defined but never utilized, causing unnecessary clutter. Its removal simplifies the SingleResponse class, enhancing maintainability and readability.

+semver: breaking
  • Loading branch information
Gary Woodfine committed Sep 15, 2024
1 parent 2cfa424 commit ec565ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ApiResponse/SingleResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ public SingleResponse(TModel model, List<KeyValuePair<string, string[]>> valida
Item = model;
}
public TModel Item { get; }
public List<Actions> Actions { get; set; }

}
}

0 comments on commit ec565ad

Please sign in to comment.