24 lines
401 B
C#
24 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Aiwaz.Common
|
|
{
|
|
public class Pair<T, U>
|
|
{
|
|
public Pair()
|
|
{
|
|
}
|
|
|
|
public Pair(T first, U second)
|
|
{
|
|
this.First = first;
|
|
this.Second = second;
|
|
}
|
|
|
|
public T First { get; set; }
|
|
public U Second { get; set; }
|
|
}
|
|
}
|