mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
17 lines
342 B
C#
17 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Xzy.KnowledgeBase.Domain.Options
|
|
{
|
|
public class ConnectionOption
|
|
{
|
|
/// <summary>
|
|
/// sqlite连接字符串
|
|
/// </summary>
|
|
public static string Sqlite { get; set; }
|
|
}
|
|
}
|