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