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