namespace Microsoft.SelfService.Portal.Core.API.Dto.Target.Edit { public class EditTargetDto { public string Name { get; set; } public string TargetType { get; set; } = "VirtualMachine"; public string ProviderType { get; set; } = "OnPrem"; public string? ExternalId { get; set; } public string? MetadataJson { get; set; } } }