Initial Commit

This commit is contained in:
2023-06-01 12:48:01 -07:00
commit 1f5deedc73
35 changed files with 2262 additions and 0 deletions

View File

@ -0,0 +1,10 @@
namespace Barcode.Host.Shared.Models.Stateless;
public interface IAppSettingsRepository<T>
{
T GetAppSettings();
string GetBuildNumberAndGitCommitSeven();
void VerifyConnectionStrings();
}