init
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace CANFDApiProxy.Requests
|
||||
{
|
||||
internal class ClocksRequest
|
||||
{
|
||||
public string cmd { get; set; }
|
||||
public string time { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
namespace CANFDApiProxy.Requests
|
||||
{
|
||||
public class CanConfigItem
|
||||
{
|
||||
public CanConfigItem(int base_or_arb_bitrate, int base_or_arb_sjw, int data_bitrate, int data_sjw, string filetype, bool included, bool is_fd)
|
||||
{
|
||||
this.base_or_arb_bitrate = base_or_arb_bitrate;
|
||||
this.base_or_arb_sjw = base_or_arb_sjw;
|
||||
this.data_bitrate = data_bitrate;
|
||||
this.data_sjw = data_sjw;
|
||||
this.filetype = filetype;
|
||||
this.included = included;
|
||||
this.is_fd = is_fd;
|
||||
}
|
||||
public int base_or_arb_bitrate { get; set; }
|
||||
public int base_or_arb_sjw { get; set; }
|
||||
public int data_bitrate { get; set; }
|
||||
public int data_sjw { get; set; }
|
||||
public string filetype { get; set; }
|
||||
public bool included { get; set; }
|
||||
public bool is_fd { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user