using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// MedicalHospitalInfo Data Structure.
///
[Serializable]
public class MedicalHospitalInfo : AopObject
{
///
/// 医院唯一标识,编码开发者生成并保证唯一
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 医院名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 医院联系电话
///
[JsonProperty("phone")]
public string Phone { get; set; }
}
}