namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentArtifact.Add { public class AddDeploymentArtifactDto { public Guid DeploymentGroupId { get; set; } public Guid? TargetId { get; set; } public string ArtifactType { get; set; } = "ResolvedConfigurationData"; public string Status { get; set; } = "Pending"; public string DeploymentJson { get; set; } = "{}"; public string? SourceJson { get; set; } public string? ResolvedJson { get; set; } public string? SourceSnapshotJson { get; set; } } }