namespace Microsoft.SelfService.Portal.Core.API.Dto.CredentialSecret.Add { public class AddCredentialSecretDto { public string Name { get; set; } = string.Empty; public string? UserName { get; set; } public string SecretValue { get; set; } = string.Empty; public string SecretType { get; set; } = "Credential"; public string? MetadataJson { get; set; } public bool IsEnabled { get; set; } = true; } }