14 lines
424 B
C#
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; }
|
|
}
|
|
}
|
|
|