mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2026-05-16 04:48:12 +02:00
12 lines
314 B
C#
12 lines
314 B
C#
namespace MaksIT.LetsEncrypt;
|
|
|
|
public interface ILetsEncryptConfiguration {
|
|
string Production { get; set; }
|
|
string Staging { get; set; }
|
|
}
|
|
|
|
public class LetsEncryptConfiguration : ILetsEncryptConfiguration {
|
|
public required string Production { get; set; }
|
|
public required string Staging { get; set; }
|
|
}
|