| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// UserSellerGetResponse.
- /// </summary>
- public class UserSellerGetResponse : TopResponse
- {
- /// <summary>
- /// 用户
- /// </summary>
- [XmlElement("user")]
- public Top.Api.Domain.User User { get; set; }
- }
- }
|