17 lines
359 B
C#
17 lines
359 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Core.Utilities
|
|
{
|
|
public class JsonContent : StringContent
|
|
{
|
|
public JsonContent(object obj) :
|
|
base(JsonConvert.SerializeObject(obj), Encoding.UTF8, "application/json")
|
|
{
|
|
}
|
|
}
|
|
}
|