12 lines
221 B
C#
12 lines
221 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace KingInfoWebApi.Core.DBManager
|
|
{
|
|
public class DBConnectionAttribute : Attribute
|
|
{
|
|
public string DBName { get; set; }
|
|
}
|
|
}
|