iotgateway/Plugins/Plugin/DriverInfo.cs
2021-12-12 14:55:48 +08:00

14 lines
220 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Plugin
{
public class DriverInfo
{
public string FileName;
public Type Type;
}
}