blob: 1a7d57210bc5e64fcba3fce61e1b3d572d72c959 [file] [log] [blame]
//
// TStruct.cs
//
// Begin: Aug 19, 2007
// Authors:
// Todd Berman <tberman@imeem.com>
//
// Distributed under the Thrift Software License
//
// See accompanying file LICENSE or visit the Thrift site at:
// http://developers.facebook.com/thrift/using
using System;
using System.Collections.Generic;
using System.Text;
namespace Thrift.Protocol
{
public struct TStruct
{
private string name;
public TStruct(string name)
:this()
{
this.name = name;
}
public string Name
{
get { return name; }
set { name = value; }
}
}
}