namespace Taloyhtio.GeneralApi.Core.Common { public class Pair { public Pair(T1 item1, T2 item2) { this.Item1 = item1; this.Item2 = item2; } public T1 Item1 { get; set; } public T2 Item2 { get; set; } // // public static Pair Create(T1 item1, T2 item2) // { // return new Pair(item1, item2); // } } }