init
This commit is contained in:
25
Common/DTS.Common/Interface/Sensors/ICanSettingDefaults.cs
Normal file
25
Common/DTS.Common/Interface/Sensors/ICanSettingDefaults.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using DTS.Common.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO.Ports;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DTS.Common.Interface.Sensors
|
||||
{
|
||||
public interface ICanSettingDefaults
|
||||
{
|
||||
bool IsFD { get; set; }
|
||||
int ArbBaseBitrate { get; set; }
|
||||
int ArbBaseSJW { get; set; }
|
||||
int DataBitrate { get; set; }
|
||||
int DataSJW { get; set; }
|
||||
string FileType { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
bool Validate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user