Updated azure-pipelines-server.yml

Changed to thunderclient to messa017
Nuget Bump
Scan Helper
This commit is contained in:
2023-04-17 14:23:46 -07:00
parent 72b648589e
commit 70c1e1a52a
37 changed files with 1443 additions and 762 deletions

View File

@ -0,0 +1,12 @@
using OI.Metrology.Shared.DataModels;
namespace OI.Metrology.Shared.Models.Stateless;
public interface IReactorsRepository
{
Result<int[]> EvenReactors();
Result<int[]> OddReactors();
}