using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/7/14 10:03:46
//Author
//Description Create
//----------------------------------------------------------------
using Muchinfo.MTPClient.Data.Helper;
namespace Muchinfo.MTPClient.Data.Model.Account
{
///
/// 会员账号信息
///
public class AreaAccount
{
///
/// 账号信息
///
[PropertyDisc("AccountCode")]
public string AccountCode { get; set; }
///
/// 账号id
///
[PropertyDisc("accountid")]
public string AccountId { get; set; }
///
/// 账号信息
///
[PropertyDisc("accountname")]
public string AccountName { get; set; }
///
/// 会员ID
///
[PropertyDisc("areaid")]
public uint AreaId { get; set; }
}
}