mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-12-02 03:38:01 +08:00
16 lines
344 B
C#
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; }
|
|
}
|
|
}
|