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

7 lines
148 B
C#

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