12 lines
357 B
C#
12 lines
357 B
C#
namespace adas_core.Domain.Models.Providers;
|
|
|
|
/// <summary>
|
|
/// Represents the configuration settings used to manage and configure providers within the application.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=7fdd003 -->
|
|
public class ProvidersSettings
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Url { get; set; } = string.Empty;
|
|
} |