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

7 lines
148 B
C#

namespace SharpChat.Database {
public interface IDatabaseParameter {
string Name { get; }
object Value { get; set; }
}
}