src/JetBrains.Space.Common/Types/Pair.cs [14:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
: IPropagatePropertyAccessPath
{
///
/// Get/set the first element in the .
///
[Required]
[JsonPropertyName("first")]
public TFirst First { get; set; } = default!;
///
/// Get/set the second element in the .
///
[Required]
[JsonPropertyName("second")]
public TSecond Second { get; set; } = default!;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
src/JetBrains.Space.Common/Types/Triple.cs [15:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
: IPropagatePropertyAccessPath
{
///
/// Get/set the first element in the .
///
[Required]
[JsonPropertyName("first")]
public TFirst First { get; set; } = default!;
///
/// Get/set the second element in the .
///
[Required]
[JsonPropertyName("second")]
public TSecond Second { get; set; } = default!;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -