r1460@opsdev009 (orig r77478): dreiss | 2008-01-11 12:59:12 -0800
[amiethrift.git] / lib / csharp / src / Protocol / TField.cs
blobf18381ff95522b440570ba1155e16317d037a3b8
1 //
2 // TField.cs
3 //
4 // Begin: Aug 19, 2007
5 // Authors:
6 // Todd Berman <tberman@imeem.com>
7 //
8 // Distributed under the Thrift Software License
9 //
10 // See accompanying file LICENSE or visit the Thrift site at:
11 // http://developers.facebook.com/thrift/using
13 using System;
14 using System.Collections.Generic;
15 using System.Text;
17 namespace Thrift.Protocol
19 public class TField
21 public TField()
25 public TField(string name, TType type, short id)
27 Name = name;
28 Type = type;
29 ID = id;
32 public string Name
34 get;
35 set;
38 public TType Type
40 get;
41 set;
44 public short ID
46 get;
47 set;