SqlSugar/Src/Asp.Net/SqlServerTest/UnitTest/Setting/Attribute.cs

21 lines
350 B
C#
Raw Normal View History

2017-05-01 23:00:05 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.UnitTest
{
2017-05-16 13:55:57 +08:00
public class Attribute : UnitTestBase
2017-05-01 23:00:05 +08:00
{
public Attribute(int eachCount)
{
this.Count = eachCount;
}
public void Init()
{
}
}
}