12 lines
215 B
C#
12 lines
215 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Yi.Framework.Common.IOCOptions
|
|
{
|
|
public class SqlConnOptions
|
|
{
|
|
public string WriteUrl { get; set; }
|
|
public List<string> ReadUrl { get; set; }
|
|
}
|
|
}
|