mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 12:10:03 +01:00
33 lines
957 B
C#
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; }
|
|
}
|
|
}
|