init
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using SDA.DataProvider;
|
||||
|
||||
namespace Kreta.DataAccessManual.Util
|
||||
{
|
||||
public class CommandParameter
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public object Value { get; set; }
|
||||
public SDADBType Type { get; set; }
|
||||
|
||||
public CommandParameter(string name, object value)
|
||||
{
|
||||
Name = name;
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public CommandParameter(string name, object value, SDADBType type)
|
||||
{
|
||||
Name = name;
|
||||
Value = value;
|
||||
Type = type;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user