namespace Microsoft.SelfService.Portal.Core.API.Dto.ConfigurationValue.Add { public class AddConfigurationValueDto { public Guid ConfigurationDefinitionId { get; set; } public string ScopeType { get; set; } = "TemplateRevision"; public Guid ScopeId { get; set; } public string ValueSourceType { get; set; } = "Static"; public string? SourcePath { get; set; } public string? ValueJson { get; set; } public int SortOrder { get; set; } } }