19 lines
466 B
C#
19 lines
466 B
C#
namespace ZA.CoreService.ESBCertificateManager.Models;
|
|
|
|
public sealed class LocalSetupSelection
|
|
{
|
|
public string EnvironmentCode { get; set; } =
|
|
string.Empty;
|
|
|
|
public int SonicConnectionId { get; set; }
|
|
|
|
public int SonicCredentialId { get; set; }
|
|
|
|
public string ConnectionName { get; set; } =
|
|
string.Empty;
|
|
|
|
public string CredentialName { get; set; } =
|
|
string.Empty;
|
|
|
|
public DateTimeOffset SavedAtUtc { get; set; }
|
|
} |