Files
XRLib/Assets/Scripts/UVC/Data/DataRequestInfo.cs

14 lines
247 B
C#
Raw Normal View History

2025-06-04 23:10:11 +09:00
using System.Collections.Generic;
namespace UVC.Data
{
public class DataRequestInfo
{
private string url;
private string method;
private Dictionary<string, string> headers;
private string body;
}
}