sharp-chat/SharpChat.Common/DataProvider/DataProviderAttribute.cs

9 lines
220 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using SharpChat.Reflection;
namespace SharpChat.DataProvider {
public class DataProviderAttribute : ObjectConstructorAttribute {
public DataProviderAttribute(string name) : base(name) {
}
}
}