Skip to content

Commit

Permalink
Generic response status code & response content as public (#1195)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nodirbek-Abdulaxadov authored Dec 13, 2024
1 parent ccb4801 commit 022071e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Minio/DataModel/Response/GenericResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ namespace Minio.DataModel.Response;

public class GenericResponse
{
internal GenericResponse(HttpStatusCode statusCode, string responseContent)
public GenericResponse(HttpStatusCode statusCode, string responseContent)
{
ResponseContent = responseContent;
ResponseStatusCode = statusCode;
}

internal string ResponseContent { get; }
internal HttpStatusCode ResponseStatusCode { get; }
}
public string ResponseContent { get; }
public HttpStatusCode ResponseStatusCode { get; }
}

0 comments on commit 022071e

Please sign in to comment.