1
wangsheng
2022-03-22 49d5052a4a51a639d1c75d6feca56f8ae2e5e568
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 GwBlack
    {
        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;
            }
        }
    }
}