using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FiestaLib.Util { public sealed class Pair { public T1 First { get; private set; } public T2 Second { get; private set; } public Pair(T1 pFirst, T2 pSecond) { this.First = pFirst; this.Second = pSecond; } } }