using System; namespace MonoDevelop.ConnectedServices { /// /// Object that is used to serialize the ConnectedService.json file /// public class ConnectedServiceState { /// /// Gets or sets the provider identifier. /// public string ProviderId { get; set; } /// /// Gets or sets the version of the provider /// public string Version { get; set; } /// /// Gets or sets the getting started document object /// public object GettingStartedDocument { get; set; } } }