Files
123123/ZA.CoreService.ESBCertificateManager/Models/DeploymentTarget.cs
T
GizzlerandCursor 12eebfc78a Simplify app to certificate recognition and MfApi restart only.
Remove XApi, WinRM, LocalCmd, HTTP API, TLS probe, SQL deploy model, and deploy UI.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-24 11:06:10 +02:00

13 lines
452 B
C#

namespace ZA.CoreService.ESBCertificateManager.Models;
public sealed class DeploymentTarget
{
public int Id { get; init; }
public required string Name { get; init; }
public string Environment { get; init; } = "TEST";
public bool IsActive { get; init; } = true;
public string ContainerName { get; init; } = string.Empty;
public string SonicConnectionName { get; init; } = string.Empty;
public int SortOrder { get; init; }
}