namespace adas_core.Domain.Models.Providers; /// /// Represents the configuration settings used to manage and configure providers within the application. /// public class ProvidersSettings { public string Name { get; set; } = string.Empty; public string Url { get; set; } = string.Empty; }