Lots of updates
This commit is contained in:
20
PWAPPv2/Source/API/APIRequestBuilder.cs
Normal file
20
PWAPPv2/Source/API/APIRequestBuilder.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml;
|
||||
using System.Xml.Serialization;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace PWAPPv2.Source.API
|
||||
{
|
||||
class APIRequestBuilder
|
||||
{
|
||||
public static string BuildJsonBodyRequest(Object src)
|
||||
{
|
||||
return JsonConvert.SerializeObject(src);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user