1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
| namespace Model
| {
| public class GwWhite
| {
| private int _clientId;
| private string _mobileList;
|
| public int ClientID
| {
| get
| {
| return this._clientId;
| }
| set
| {
| this._clientId = value;
| }
| }
|
| public string MobileList
| {
| get
| {
| return this._mobileList;
| }
| set
| {
| this._mobileList = value;
| }
| }
| }
| }
|
|