Developer 02 bd4d4856ea feat(IHttpClientOptions):
Basispfad zu http-Client-Optionen hinzugefügt
2024-11-22 12:05:13 +01:00

9 lines
187 B
C#

namespace DigitalData.Core.Abstractions.Client
{
public interface IHttpClientOptions
{
public string Uri { get; set; }
public string Path { get; set; }
}
}