Statistics
| Branch: | Revision:

root / trunk / hammock / src / net35 / Hammock / Web / Pair.cs @ 0eea575a

History | View | Annotate | Download (162 Bytes)

1
namespace Hammock.Web
2
{
3
    public class Pair<TFirst, TSecond>
4
    {
5
        public TFirst First { get; set; }
6
        public TSecond Second { get; set; }
7
    }
8
}