using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Core.Domain.Response { public class UsercenterResponse { public int Ret { get; set; } public string RetMsg { get; set; } public List List { get; set; } } }