work
This commit is contained in:
		@@ -6,7 +6,23 @@ using System.Threading.Tasks;
 | 
			
		||||
 | 
			
		||||
namespace DataClient.Struct
 | 
			
		||||
{
 | 
			
		||||
	class Analog
 | 
			
		||||
	public class ConfAnalog
 | 
			
		||||
	{
 | 
			
		||||
		public int id = 0;
 | 
			
		||||
		public string name = null;
 | 
			
		||||
		public string sname = null;
 | 
			
		||||
		public string measure = null;
 | 
			
		||||
		public double min = double.MinValue;
 | 
			
		||||
		public double max = double.MaxValue;
 | 
			
		||||
		public double norm = 0;
 | 
			
		||||
		public int precision = 0;
 | 
			
		||||
		public double mul = 1;
 | 
			
		||||
		public bool log = false;
 | 
			
		||||
		public int[] byteId = Array.Empty<int>();
 | 
			
		||||
	}
 | 
			
		||||
	public class Analog
 | 
			
		||||
	{
 | 
			
		||||
		public double? value = null;
 | 
			
		||||
		public DateTime date = DateTime.Now;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user