| David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 1 | // | 
|  | 2 | //  TStruct.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 | 
|  | 12 | using System; | 
|  | 13 | using System.Collections.Generic; | 
|  | 14 | using System.Text; | 
|  | 15 |  | 
|  | 16 | namespace Thrift.Protocol | 
|  | 17 | { | 
|  | 18 | public class TStruct | 
|  | 19 | { | 
|  | 20 | public TStruct() | 
|  | 21 | { | 
|  | 22 | } | 
|  | 23 |  | 
|  | 24 | public TStruct(string name) | 
|  | 25 | { | 
|  | 26 | Name = name; | 
|  | 27 | } | 
|  | 28 |  | 
|  | 29 | public string Name | 
|  | 30 | { | 
|  | 31 | get; | 
|  | 32 | set; | 
|  | 33 | } | 
|  | 34 | } | 
|  | 35 | } |