using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YouZanSDKStandard.Api.Domain
{
///
/// 会员账户信息
///
[Serializable]
public class CustomerAccountOpenModel
{
///
/// 会员账户Id
///
public string account_id { get; set; }
///
/// 帐号类型。目前支持以下选项(只支持传一种): FansID:自有粉丝ID, Mobile:手机号, YouZanAccount:有赞账号
///
public string account_type { get; set; }
}
}