ASP.NET Razor website for https://wotdn.nightmare.haus
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
384 B

// MysqlConfig myDeserializedClass = JsonConvert.DeserializeObject<MysqlConfig>(myJsonResponse);
public class MysqlConfig
{
public string MysqlUsername { get; set; }
public string MysqlPassword { get; set; }
public string MysqlPort { get; set; }
public string MysqlServer { get; set; }
public string MysqlDatabase { get; set; }
}