dashboard
repositories
filestore
activity
search
login
main
/
jfptht-public
洪城义警-正式版后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
任务取消
zengh
2022-03-07
e38b0c2f6836e87e8cebed180d7f6bf2f1dd1fa3
[jfptht-public.git]
/
src
/
main
/
java
/
org
/
springblade
/
modules
/
words
/
internals
/
TwoTuple.java
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;
}
}