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

16 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Plugin
{
public class ConnnectSettingsModel
{
public string Key { get; set; }
public string Value { get; set; }
public string DbContext { get; set; }
public string DBType { get; set; }
}
}