com.microsoft.store.partnercenter.models.utils.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercenter Show documentation
Show all versions of partnercenter Show documentation
SDK for accessing Microsoft Partner Center API.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See the LICENSE file in the project root for full license information.
package com.microsoft.store.partnercenter.models.utils;
public class Tuple
{
private T1 item1;
private T2 item2;
public Tuple( T1 item1, T2 item2 )
{
this.item1 = item1;
this.item2 = item2;
}
public T1 getItem1()
{
return item1;
}
public void setItem1( T1 item1 )
{
this.item1 = item1;
}
public T2 getItem2()
{
return item2;
}
public void setItem2( T2 item2 )
{
this.item2 = item2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy