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.
 
 
 

17 lines
676 B

// MysqlConfig myDeserializedClass = JsonConvert.DeserializeObject<MysqlConfig>(myJsonResponse);
using System.Collections.Generic;
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; }
public string EmailAddress { get; set; }
public string EmailDomain { get; set; }
public string EmailHost { get; set; }
public string EmailPass { get; set; }
public List<string> AllowedDomains { get; set; }
}