blob: c4c6fc3331b25af174e628d6099084d263986688 [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 class TSet
{
public TSet()
{
}
public TSet(TType elementType, int count)
{
ElementType = elementType;
Count = count;
}
public TType ElementType
{
get;
set;
}
public int Count
{
get;
set;
}
}
}