blob: cdf38490fd237f1fe3d4626e9619decd35ab2e6c [file] [log] [blame]
//
// TSet.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 TSet
{
private TType elementType;
private int count;
public TSet(TType elementType, int count)
:this()
{
this.elementType = elementType;
this.count = count;
}
public TType ElementType
{
get { return elementType; }
set { elementType = value; }
}
public int Count
{
get { return count; }
set { count = value; }
}
}
}