1 package pl.matsuo.core.web.controller.user;
2
3
4 import pl.matsuo.core.IRequestParams;
5
6
7 /**
8 * Created by marek on 18.05.14.
9 */
10 public interface IBlockUserParams extends IRequestParams {
11
12
13 Integer getId();
14 void setId(Integer id);
15 Boolean getBlock();
16 void setBlock(Boolean block);
17 }
18