16 lines
346 B
C#
16 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YuanXuan.IM.Common.Configs
|
|
{
|
|
public class ConnectionStringsSettings
|
|
{
|
|
public string Redis { get; set; }
|
|
public string Db { get; set; }
|
|
public string UserCenterDb { get; set; }
|
|
}
|
|
}
|