mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
add some R# annotations
This commit is contained in:
parent
14d8e41924
commit
2296b4bfae
2 changed files with 6 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
namespace FilterLists.Agent.AppSettings
|
||||
using JetBrains.Annotations;
|
||||
|
||||
namespace FilterLists.Agent.AppSettings
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class ConnectionStrings
|
||||
{
|
||||
public string FilterListsConnection { get; set; }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
using System;
|
||||
using System.Net.Http;
|
||||
using System.Net.Http.Headers;
|
||||
using JetBrains.Annotations;
|
||||
|
||||
namespace FilterLists.Agent.Infrastructure.Clients
|
||||
{
|
||||
|
|
@ -9,6 +10,7 @@ public interface IAgentHttpClient
|
|||
HttpClient HttpClient { get; }
|
||||
}
|
||||
|
||||
[UsedImplicitly]
|
||||
public class AgentHttpClient : IAgentHttpClient
|
||||
{
|
||||
public AgentHttpClient(HttpClient client)
|
||||
|
|
|
|||
Loading…
Reference in a new issue