11 lines
323 B
C#
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;
|
|
} |