All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.store.partnercenter.models.utils.Tuple Maven / Gradle / Ivy

There is a newer version: 1.15.3
Show newest version
// 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