using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SDKCSharp.Common
{
public class RequestForm
{
///
/// 请求表单内容
///
public Dictionary Form { get; set; }
///
/// 上传文件
///
public List Files { get; set; }
///
/// 指定或者设置字符集
///
/// The charset.
public Encoding Charset { get; set; }
///
/// 指定或设置HTTP请求method
///
/// The request method.
public RequestMethod RequestMethod { get; set; } = RequestMethod.POST;
public RequestForm(Dictionary form)
{
this.Form = form;
}
}
}