forked from nicogis/Geometric-Network-Utility-SOE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIPair.cs
31 lines (30 loc) · 810 Bytes
/
IPair.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//-----------------------------------------------------------------------
// <copyright file="IPair.cs" company="Studio A&T s.r.l.">
// Copyright (c) Studio A&T s.r.l. All rights reserved.
// </copyright>
// <author>Nicogis</author>
namespace Studioat.ArcGis.Soe.Rest
{
/// <summary>
/// Provides the interface for a Pair.
/// </summary>
/// <typeparam name="A">The first value</typeparam>
/// <typeparam name="B">The second value</typeparam>
internal interface IPair<A, B>
{
/// <summary>
/// Gets the first value in the pair.
/// </summary>
A First
{
get;
}
/// <summary>
/// Gets the second value in the pair.
/// </summary>
B Second
{
get;
}
}
}