sqlflow_public/api/csharp/SQLFlowClient/Config.cs

15 lines
300 B
C#

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; }
}
}