fb908a8903
Added signalR override management Fix head configuration
14 lines
273 B
C#
14 lines
273 B
C#
using static Step.Model.Constants;
|
|
|
|
namespace Step.Model.ConfigModels
|
|
{
|
|
public class HeadsConfigModel
|
|
{
|
|
public int Id;
|
|
public string Name;
|
|
public HEAD_TYPE Type;
|
|
public short WarningLimit;
|
|
public short AlarmLimit;
|
|
}
|
|
}
|