blob: 93c0738a1d296667dbaa1f9433af154479a672fb [file] [log] [blame]
//
// TField.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 TField
{
public TField(string name, TType type, short id)
:this()
{
Name = name;
Type = type;
ID = id;
}
public string Name
{
get;
set;
}
public TType Type
{
get;
set;
}
public short ID
{
get;
set;
}
}
}