mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
12 lines
214 B
C#
12 lines
214 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Yi.Framework.Common.IOCOptions
|
|
{
|
|
public class DbConnOptions
|
|
{
|
|
public string WriteUrl { get; set; }
|
|
public List<string> ReadUrl { get; set; }
|
|
}
|
|
}
|