using System; using System.Collections.Generic; namespace MySystem.Entity.UnionPay { /// /// 证件类型信息 /// public class UnionPayIdCardTypeInfo { /// /// 证件类型 /// public string type { get; set; } /// /// 证件名称 /// public string name { get; set; } } }