Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Common/IOCOptions/SqlConnOptions.cs

12 lines
215 B
C#
Raw Normal View History

2021-10-10 17:30:31 +08:00
using System;
using System.Collections.Generic;
2021-10-10 17:30:31 +08:00
namespace Yi.Framework.Common.IOCOptions
{
2022-04-09 16:16:32 +08:00
public class SqlConnOptions
2021-10-10 17:30:31 +08:00
{
public string WriteUrl { get; set; }
public List<string> ReadUrl { get; set; }
2021-10-10 17:30:31 +08:00
}
}