mirror of
https://gitee.com/x_discoverer/Vue.NetCore.git
synced 2025-12-06 07:49:23 +08:00
12 lines
210 B
C#
12 lines
210 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace VOL.Core.DBManager
|
|
{
|
|
public class DBConnectionAttribute : Attribute
|
|
{
|
|
public string DBName { get; set; }
|
|
}
|
|
}
|