Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (217 Bytes)

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