blob: 3833695728cc858e795011195630c4e289d6d0ab [file] [log] [blame]
David Reiss7f42bcf2008-01-11 20:59:12 +00001//
2// TStruct.cs
3//
4// Begin: Aug 19, 2007
David Reiss0c90f6f2008-02-06 22:18:40 +00005// Authors:
David Reiss7f42bcf2008-01-11 20:59:12 +00006// 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{
David Reiss46dc6292008-02-06 22:09:58 +000018 public struct TStruct
David Reiss7f42bcf2008-01-11 20:59:12 +000019 {
David Reiss7f42bcf2008-01-11 20:59:12 +000020 public TStruct(string name)
21 {
22 Name = name;
23 }
24
25 public string Name
26 {
27 get;
28 set;
29 }
30 }
31}