blob: 53c78334ace36241734f5a164156f489475270ed [file] [log] [blame]
David Reiss7f42bcf2008-01-11 20:59:12 +00001//
2// TMap.cs
3//
4// Begin: Aug 19, 2007
David Reiss0c90f6f2008-02-06 22:18:40 +00005// Authors:
David Reiss7f42bcf2008-01-11 20:59:12 +00006// 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 TMap
David Reiss7f42bcf2008-01-11 20:59:12 +000020 {
David Reiss7f42bcf2008-01-11 20:59:12 +000021 public TMap(TType keyType, TType valueType, int count)
22 {
23 KeyType = keyType;
24 ValueType = valueType;
25 Count = count;
26 }
27
28 public TType KeyType
29 {
30 get;
31 set;
32 }
33
34 public TType ValueType
35 {
36 get;
37 set;
38 }
39
40 public int Count
41 {
42 get;
43 set;
44 }
45 }
46}