using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YouZanSDKStandard.Api.Domain
{
public class CustomerResultDTO
{
///
///
///
public string name { get; set; }
///
///
///
public int gender { get; set; }
///
///
///
public long yz_uid { get; set; }
///
///
///
public string mobile { get; set; }
///
///
///
public long weixin_fans_id { get; set; }
///
///
///
public int is_member { get; set; }
///
///
///
public int trade_count { get; set; }
///
///
///
public int points { get; set; }
///
///
///
public long[] card_ids { get; set; }
///
///
///
public long created_at { get; set; }
///
///
///
public long member_created_at { get; set; }
///
///
///
public long fans_id { get; set; }
///
///
///
public string show_name { get; set; }
}
}