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