blob: 88f12df6d8b770b6af9c94e4141a056ae9aacb76 [file] [log] [blame]
David Reiss7f42bcf2008-01-11 20:59:12 +00001//
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
12using System;
13using System.Collections.Generic;
14using System.Text;
15
16namespace 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}