123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.CloudServerData.Model
- {
-
-
-
- public class CloudClientConfig : BaseConfig
- {
- public CloudClientConfig()
- {
- }
- int _PagingSize = 100;
-
-
-
- public int PagingSize
- {
- get { return _PagingSize; }
- set { _PagingSize = value; }
- }
- List<HistoryUser> historyUserList = new List<HistoryUser>();
-
-
-
- public List<HistoryUser> HistoryUserList
- {
- get { return historyUserList; }
- set { historyUserList = value; }
- }
- decimal _TrafficUnitPrice = 1;
-
-
-
- public decimal TrafficUnitPrice
- {
- get { return _TrafficUnitPrice; }
- set { _TrafficUnitPrice = value; }
- }
- }
-
-
-
- public class HistoryUser
- {
- public HistoryUser() {
-
- }
-
-
-
- public string UserID
- {
- get;
- set;
- }
-
-
-
- public string UserName
- {
- get;
- set;
- }
-
-
-
- public int Sex
- {
- get;
- set;
- }
-
-
-
- public string Password
- {
- get;
- set;
- }
- }
- }
|