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; } } } }