using Json.LitJson;
using System.Collections.Generic;
namespace ServiceClientGenerator.Endpoints
{
///
/// Object model for Endpoint data
///
public class EndpointData
{
///
/// Endpoint URL
///
public JsonData url { get; set; }
///
/// Property bag for various properties assosiated with Endpoint
///
public JsonData properties { get; set; }
///
/// Set of headers required for Endpoint
///
public JsonData headers { get; set; }
}
}