6 lines
148 B
C#
6 lines
148 B
C#
namespace SharpChat.Database {
|
|
public interface IDatabaseParameter {
|
|
string Name { get; }
|
|
object Value { get; set; }
|
|
}
|
|
}
|