Skip to content

Commit

Permalink
fix class naming typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pokornyd committed Mar 7, 2024
1 parent c7205e6 commit f856ee1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public sealed class EnvironmentReportModel
/// Gets or sets reports of the problems found in the environment's content types
/// </summary>
[JsonProperty("type_issues")]
public List<TypeIssues> TypeIssues { get; set; }
public List<TypeIssue> TypeIssues { get; set; }
}

4 changes: 2 additions & 2 deletions Kontent.Ai.Management/Models/ProjectReport/TypeIssues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
namespace Kontent.Ai.Management.Models.EnvironmentReport;

/// <summary>
/// Represents the report of the problems found in the project's content types.
/// Represents the report of the problems found in the environment's content types.
/// </summary>
public class TypeIssues // TODO: rename
public class TypeIssue
{
/// <summary>
/// Gets or sets information about content type
Expand Down

0 comments on commit f856ee1

Please sign in to comment.