Files
Microsoft.SelfService.Porta…/Dto/Target/Add/AddTargetDto.cs

14 lines
424 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto.Target.Add
{
public class AddTargetDto
{
public Guid? DomainID { get; set; }
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; }
}
}