diff --git a/dotnet/src/SemanticKernel.Skills/Skills.OpenAPI/Model/RestApiOperationParameter.cs b/dotnet/src/SemanticKernel.Skills/Skills.OpenAPI/Model/RestApiOperationParameter.cs
index aa6c650c5aab..a8186ca5621d 100644
--- a/dotnet/src/SemanticKernel.Skills/Skills.OpenAPI/Model/RestApiOperationParameter.cs
+++ b/dotnet/src/SemanticKernel.Skills/Skills.OpenAPI/Model/RestApiOperationParameter.cs
@@ -10,7 +10,7 @@ internal class RestApiOperationParameter
///
/// The parameter name.
///
- public string Name { get; }
+ public string Name { get; }
///
/// The property alternative name. It can be used as an alternative name in contexts where the original name can't be used.
diff --git a/samples/dotnet/FileCompression/FileCompressionSkill.cs b/samples/dotnet/FileCompression/FileCompressionSkill.cs
index 717f5688e625..c164b8c2f627 100644
--- a/samples/dotnet/FileCompression/FileCompressionSkill.cs
+++ b/samples/dotnet/FileCompression/FileCompressionSkill.cs
@@ -8,7 +8,6 @@
using Microsoft.Extensions.Logging.Abstractions;
using Microsoft.SemanticKernel.Orchestration;
using Microsoft.SemanticKernel.SkillDefinition;
-using Microsoft.SemanticKernel.Skills.FileCompression;
namespace FileCompression;