16 lines
470 B
C#
16 lines
470 B
C#
namespace ZA.CoreService.ESBCertificateManager.Models;
|
|
|
|
/// <summary>
|
|
/// Fester Demo-Pfad für den ersten Zertifikat-Austausch-Test (TEST / DE).
|
|
/// </summary>
|
|
public static class DemoCertificatePath
|
|
{
|
|
public const string Directory =
|
|
@"\\dekun-painwbdet\e$\proalpha-inwb\test\Containers\proalpha-test.ct-ZADBService\certs";
|
|
|
|
public const string FileName = "server.p12";
|
|
|
|
public static string FullPath =>
|
|
Path.Combine(Directory, FileName);
|
|
}
|