maksit-certs-ui/v2.0/LetsEncrypt/Helpers/AppSettings.cs
2020-06-07 22:48:43 +02:00

33 lines
957 B
C#

namespace LetsEncrypt.Helpers
{
public class AppSettings {
public Environment [] environments { get; set; }
public Customer [] customers { get; set;}
}
public class Environment {
public bool active { get; set; }
public string name { get; set; }
public string url { get; set; }
public string cache { get; set; }
public string www { get; set; }
public string acme { get; set; }
public string ssl { get; set; }
}
public class Customer {
public string id { get; set; }
public string [] contacts { get; set; }
public string name { get; set; }
public string lastname { get; set; }
public Site [] sites { get; set; }
}
public class Site {
public bool active { get; set; }
public string name { get; set; }
public string [] hosts { get; set; }
public string challenge { get; set; }
}
}