10 lines
203 B
C#
10 lines
203 B
C#
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IAppSettingsRepository<T>
|
|
{
|
|
|
|
T GetAppSettings();
|
|
string GetBuildNumberAndGitCommitSeven();
|
|
void VerifyConnectionStrings();
|
|
|
|
} |