14 lines
247 B
C#
14 lines
247 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UVC.Data
|
|
{
|
|
public class DataRequestInfo
|
|
{
|
|
private string url;
|
|
private string method;
|
|
private Dictionary<string, string> headers;
|
|
private string body;
|
|
|
|
}
|
|
}
|