mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
14 lines
221 B
C#
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; }
|
|
}
|
|
}
|