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