PdbLib/PdbServer/Logic/Pdb/PdbDownloadResult.cs
2025-06-05 10:51:52 +08:00

26 lines
500 B
C#

namespace Microsoft.PdbDownloader.Logic.Pdb
{
using System.Net;
internal class PdbDownloadResult
{
/// <summary>
/// Gets or sets the response status.
/// </summary>
internal HttpStatusCode ResponseStatus
{
get;
set;
}
/// <summary>
/// Gets or sets the response buffer.
/// </summary>
internal byte[] ResponseBuffer
{
get;
set;
}
}
}