using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ExerciseUserMappingDTO Data Structure.
///
[Serializable]
public class ExerciseUserMappingDTO : AopObject
{
///
/// 健身用户id
///
[XmlElement("fitness_id")]
public string FitnessId { get; set; }
///
/// 手机号
///
[XmlElement("phone")]
public string Phone { get; set; }
}
}