blob: 000ebf11585281ccbf27779e8acf723935c7a2ea [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{
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}