using Microsoft.SelfService.Portal.Core.API.Dto; namespace Microsoft.SelfService.Portal.Core.API.Dto.ConfigurationValue.Get { public class GetConfigurationValueDto : BaseDetailsDto { public Guid ConfigurationDefinitionId { get; set; } public string ScopeType { get; set; } = string.Empty; public Guid ScopeId { get; set; } public string ValueSourceType { get; set; } = string.Empty; public string? SourcePath { get; set; } public string? ValueJson { get; set; } public string ValueHash { get; set; } = string.Empty; public int SortOrder { get; set; } } }