iotgateway/Plugins/Plugin/ConnnectSettingsMode.cs
2022-08-10 16:55:44 +08:00

10 lines
249 B
C#

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; }
}
}