New Samples Update. Modbus Coil Read Write Fix.

This commit is contained in:
parallelbgls
2016-11-01 14:25:21 +08:00
parent e7e0a7795d
commit 47b7ae324c
591 changed files with 95743 additions and 21528 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TripleAdd.Models
{
public class TripleAddViewModel
{
public ushort Add1 { get; set; }
public ushort Add2 { get; set; }
public ushort Add3 { get; set; }
public ushort Ans { get; set; }
}
}