<PackageReference Include="System.ValueTuple" Version="4.5.0-rc1" />

System.ValueTuple<T1>

Represents a 1-tuple, or singleton, as a value type.
namespace System { public struct ValueTuple<T1> : IEquatable<ValueTuple<T1>>, IStructuralEquatable, IStructuralComparable, IComparable, IComparable<ValueTuple<T1>>, System.ITupleInternal { public T1 Item1; public ValueTuple(T1 item1); public bool Equals(ValueTuple<T1> other); public int CompareTo(ValueTuple<T1> other); } }