Skip to content

Commit 58259f2

Browse files
committed
Remove public modifier for interface property
1 parent 05a63f6 commit 58259f2

37 files changed

Lines changed: 37 additions & 37 deletions

File tree

modules/openapi-generator/src/main/resources/csharp/libraries/generichost/ApiResponse`1.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace {{packageName}}.{{clientPackage}}
3737
/// <summary>
3838
/// The raw binary stream (only set for binary responses)
3939
/// </summary>
40-
public System.IO.Stream{{nrt?}} ContentStream { get; }
40+
System.IO.Stream{{nrt?}} ContentStream { get; }
4141

4242
/// <summary>
4343
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/latest/HelloWorld/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public partial interface IApiResponse
4040
/// <summary>
4141
/// The raw binary stream (only set for binary responses)
4242
/// </summary>
43-
public System.IO.Stream? ContentStream { get; }
43+
System.IO.Stream? ContentStream { get; }
4444

4545
/// <summary>
4646
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/latest/OneOfList/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public partial interface IApiResponse
4040
/// <summary>
4141
/// The raw binary stream (only set for binary responses)
4242
/// </summary>
43-
public System.IO.Stream? ContentStream { get; }
43+
System.IO.Stream? ContentStream { get; }
4444

4545
/// <summary>
4646
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/latest/Tags/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public partial interface IApiResponse
4141
/// <summary>
4242
/// The raw binary stream (only set for binary responses)
4343
/// </summary>
44-
public System.IO.Stream? ContentStream { get; }
44+
System.IO.Stream? ContentStream { get; }
4545

4646
/// <summary>
4747
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/net4.7/AllOf/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial interface IApiResponse
3838
/// <summary>
3939
/// The raw binary stream (only set for binary responses)
4040
/// </summary>
41-
public System.IO.Stream ContentStream { get; }
41+
System.IO.Stream ContentStream { get; }
4242

4343
/// <summary>
4444
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/net4.7/AnyOf/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial interface IApiResponse
3838
/// <summary>
3939
/// The raw binary stream (only set for binary responses)
4040
/// </summary>
41-
public System.IO.Stream ContentStream { get; }
41+
System.IO.Stream ContentStream { get; }
4242

4343
/// <summary>
4444
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/net4.7/AnyOfNoCompare/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial interface IApiResponse
3838
/// <summary>
3939
/// The raw binary stream (only set for binary responses)
4040
/// </summary>
41-
public System.IO.Stream ContentStream { get; }
41+
System.IO.Stream ContentStream { get; }
4242

4343
/// <summary>
4444
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/net4.7/FormModels/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial interface IApiResponse
3838
/// <summary>
3939
/// The raw binary stream (only set for binary responses)
4040
/// </summary>
41-
public System.IO.Stream ContentStream { get; }
41+
System.IO.Stream ContentStream { get; }
4242

4343
/// <summary>
4444
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/net4.7/OneOf/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial interface IApiResponse
3838
/// <summary>
3939
/// The raw binary stream (only set for binary responses)
4040
/// </summary>
41-
public System.IO.Stream ContentStream { get; }
41+
System.IO.Stream ContentStream { get; }
4242

4343
/// <summary>
4444
/// The DateTime when the request was retrieved.

samples/client/petstore/csharp/generichost/net4.7/Petstore/src/Org.OpenAPITools/Client/ApiResponse`1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial interface IApiResponse
3838
/// <summary>
3939
/// The raw binary stream (only set for binary responses)
4040
/// </summary>
41-
public System.IO.Stream ContentStream { get; }
41+
System.IO.Stream ContentStream { get; }
4242

4343
/// <summary>
4444
/// The DateTime when the request was retrieved.

0 commit comments

Comments
 (0)