using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// HuanlangTestServiceCombineResponse.
///
public class HuanlangTestServiceCombineResponse : TopResponse
{
///
/// 结果
///
[XmlElement("result")]
public ResultDomain Result { get; set; }
///
/// ResultDomain Data Structure.
///
[Serializable]
public class ResultDomain : TopObject
{
///
/// 11
///
[XmlElement("time")]
public string Time { get; set; }
///
/// 11
///
[XmlElement("user")]
public string User { get; set; }
}
}
}