9 lines
184 B
C#
9 lines
184 B
C#
|
|
namespace SqlSugar
|
|||
|
|
{
|
|||
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
|
|||
|
|
public class TestAttribute: Attribute
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|