wasCSharpSQLite – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace System.Data
2 {
3 public enum ParameterDirection
4 {
5 Input = 1,
6 InputOutput = 3,
7 Output = 2,
8 ReturnValue = 6
9 }
10 }