using System; using System.Collections.Generic; using System.Text; namespace SQLFlowClient { class Config { public string Host { get; set; } public string Token { get; set; } public string SecretKey { get; set; } public string UserId { get; set; } } }