9 lines
220 B
C#
9 lines
220 B
C#
|
using SharpChat.Reflection;
|
|||
|
|
|||
|
namespace SharpChat.DataProvider {
|
|||
|
public class DataProviderAttribute : ObjectConstructorAttribute {
|
|||
|
public DataProviderAttribute(string name) : base(name) {
|
|||
|
}
|
|||
|
}
|
|||
|
}
|