blob: 1f172e47d1b3ec5b4108695139d7db5ffcaf2c9f [file] [log] [blame]
David Reiss7f42bcf2008-01-11 20:59:12 +00001//
2// TSet.cs
3//
4// Begin: Aug 19, 2007
5// Authors:
6// 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
12
13using System;
14using System.Collections.Generic;
15using System.Text;
16
17namespace Thrift.Protocol
18{
David Reiss46dc6292008-02-06 22:09:58 +000019 public struct TSet
David Reiss7f42bcf2008-01-11 20:59:12 +000020 {
David Reiss7f42bcf2008-01-11 20:59:12 +000021 public TSet(TType elementType, int count)
22 {
23 ElementType = elementType;
24 Count = count;
25 }
26
27 public TType ElementType
28 {
29 get;
30 set;
31 }
32
33 public int Count
34 {
35 get;
36 set;
37 }
38 }
39}