Files
bluflame/aiwaz/Backup/Aiwaz.Common/Pair.cs
2026-04-18 22:31:51 +02:00

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; }
}
}