mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-12-02 11:47:52 +08:00
18 lines
439 B
C#
18 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PluginInterface
|
|
{
|
|
public class DriverReturnValueModel
|
|
{
|
|
public object Value { get; set; }
|
|
public object CookedValue { get; set; }
|
|
public string Message { get; set; }
|
|
public VaribaleStatusTypeEnum StatusType { get; set; }
|
|
public Guid VarId { get; set; }
|
|
}
|
|
}
|