2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / class / System.Web.Routing / Test / System.Web.Routing / KnownResponseHeader.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace MonoTests.Common
7 {
8     class KnownResponseHeader
9     {
10         private int index;
11         private string value;
12
13         public KnownResponseHeader (int index, string value)
14         {
15             this.index = index;
16             this.value = value;
17         }
18
19         public int Index
20         {
21             get { return index; }
22         }
23
24         public string Value
25         {
26             get { return value; }
27         }
28     }
29 }