GetAppSettings

This commit is contained in:
2023-01-16 17:05:21 -07:00
parent a70ee6d7e5
commit 46c9d91dc9
7 changed files with 79 additions and 60 deletions

View File

@ -1,9 +1,9 @@
namespace OI.Metrology.Shared.Models.Stateless;
public interface IAppSettingsRepository
public interface IAppSettingsRepository<T>
{
List<string> GetAppSettings();
T GetAppSettings();
string GetBuildNumberAndGitCommitSeven();
}