Files
kami_itunes_june/AppleBatch_June/HttpAppleResult.cs
2024-07-22 00:43:14 +08:00

14 lines
221 B
C#

using System.Net;
namespace AppleBatch_June
{
public class HttpAppleResult
{
public string html { get; set; }
public WebHeaderCollection Header { get; set; }
public HttpStatusCode StatusCode { get; set; }
}
}