TargetFramework update,
reference updates and added tests for Viewer
This commit is contained in:
16
Shared/Models/Stateless/IClientSettingsController.cs
Normal file
16
Shared/Models/Stateless/IClientSettingsController.cs
Normal file
@ -0,0 +1,16 @@
|
||||
namespace OI.Metrology.Shared.Models.Stateless;
|
||||
|
||||
public interface IClientSettingsController<T>
|
||||
{
|
||||
|
||||
enum Action : int
|
||||
{
|
||||
Client = 0,
|
||||
IP = 1
|
||||
}
|
||||
|
||||
static string GetRouteName() => nameof(IClientSettingsController<T>)[1..^10];
|
||||
T GetClientSettings();
|
||||
T GetIpAddress();
|
||||
|
||||
}
|
Reference in New Issue
Block a user