Fixed nullable logger issue

This commit is contained in:
Federico Barresi
2020-01-20 14:58:31 +01:00
parent 412a460261
commit d22b07c2f5
2 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Sharp7.Rx.Enums;
namespace Sharp7.Rx.Interfaces
@@ -10,5 +11,6 @@ namespace Sharp7.Rx.Interfaces
Task SetValue<TValue>(string variableName, TValue value);
Task<TValue> GetValue<TValue>(string variableName);
IObservable<ConnectionState> ConnectionState { get; }
ILogger Logger { get; }
}
}