port from perforce
This commit is contained in:
23
aiwaz/Backup/Aiwaz.Common/Pair.cs
Normal file
23
aiwaz/Backup/Aiwaz.Common/Pair.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user