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