using System; using System.Collections.Generic; using System.Text; using Microsoft.VisualStudio.Shell; using System.ComponentModel; namespace ETHZurich.OrigoVSIntegration { class OrigoSettings : DialogPage { private string m_ClientPath; [Description("Path of the Origo IDE integration command line tool including its filename")] public string ClientPath { get { return m_ClientPath; } set { m_ClientPath = value; } } private string m_OrigoKey; [Description("Your Origo key to for IDE integrations")] public string OrigoKey { get { return m_OrigoKey; } set { m_OrigoKey = value; } } } }