|
|
using System;
|
|
namespace Model
|
{
|
public class GwMobileArea
|
{
|
public int ID { get; set; }
|
|
public string MobileSegment { get; set; }
|
|
public string City { get; set; }
|
|
public string Province { get; set; }
|
|
public string CardType { get; set; }
|
|
public DateTime LastUpdateTime { get; set; }
|
|
public int IsDeleted { get; set; }
|
}
|
}
|