11 lines
116 B
C#
11 lines
116 B
C#
namespace SQLVision.Enums;
|
|
|
|
public enum ParameterType
|
|
{
|
|
Int,
|
|
String,
|
|
DateTime,
|
|
Bool,
|
|
Table
|
|
}
|