8 lines
189 B
C#
8 lines
189 B
C#
namespace adas_core.Domain.Models.Providers;
|
|
|
|
public class ProvidersSettings
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Url { get; set; } = string.Empty;
|
|
} |