blob: 62f60fdb0f150b51efc9fb26755dedc45221ce70 [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)
David Reissc9d06ee2008-03-18 18:22:43 +000021 :this()
David Reiss7f42bcf2008-01-11 20:59:12 +000022 {
23 Name = name;
24 }
25
26 public string Name
27 {
28 get;
29 set;
30 }
31 }
32}