dashboard
repositories
filestore
activity
search
login
main
/
jfptht-public
洪城义警-正式版后台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
敏感词筛选
zengh
2021-11-03
e7083d249f08f9c9980511ae9baa413b7b8e96d1
[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;
}
}