admin
2020-07-16 b5e008514ffa376154fee55423779a4f21c9f1b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.fanliunion.android.app.entity.eventbus;
 
public class UserProtocolEvent {
    public UserProtocolEvent(boolean agree) {
        this.agree = agree;
    }
 
    private boolean agree;//是否同意
    public boolean isAgree() {
        return agree;
    }
 
    public void setAgree(boolean agree) {
        this.agree = agree;
    }
}