洪城义警-正式版后台
zengh
2022-03-07 5b03cdbe799e8a91f9fcd0fd4f636a6c2c4440fd
1
2
3
4
5
6
7
8
9
10
11
package org.springblade.modules.words.internals;
 
public class TwoTuple<A, B> {
    public A Item1;
    public B Item2;
 
    public TwoTuple(A a, B b) {
        this.Item1 = a;
        this.Item2 = b;
    }
}