namespace Octokit
{
///
/// Wraps a string for the body of a request.
///
public class BodyWrapper
{
///
/// Initializes a new instance of the class.
///
/// The body.
public BodyWrapper(string body)
{
Body = body;
}
///
/// Gets the body.
///
///
/// The body.
///
public string Body { get; private set; }
}
}