You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CaiQie/RfidTool/RfidSetting.cs

12 lines
304 B
C#

using System.ComponentModel;
using NewLife.Configuration;
namespace RfidTool
{
[DisplayName("核心设置")]
[Config("Core")]
public class RfidSetting:Config<RfidSetting>
{
public string Db { get; set; } = "server=127.0.0.1;database=postgres;uid=postgres;pwd=yangwei";
}
}