sharp-chat/SharpChat.Common/DataProvider/DataProviderAttribute.cs
2022-08-30 17:05:29 +02:00

9 lines
220 B
C#

using SharpChat.Reflection;
namespace SharpChat.DataProvider {
public class DataProviderAttribute : ObjectConstructorAttribute {
public DataProviderAttribute(string name) : base(name) {
}
}
}