sharp-chat/SharpChat.Common/Database/IDatabaseParameter.cs

7 lines
148 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Database {
public interface IDatabaseParameter {
string Name { get; }
object Value { get; set; }
}
}