using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Aiwaz.Common { public class Pair { public Pair() { } public Pair(T first, U second) { this.First = first; this.Second = second; } public T First { get; set; } public U Second { get; set; } } }