Files
2026-06-26 10:29:23 +02:00

11 lines
323 B
C#

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