using System; using System.Collections.Generic; namespace Shared.Phone.UserCenter.SmartSound { public class SmartSoundDataInfo { public SmartSoundDataInfo() { } public string StateCode { get; set; } public string ErrorInfo { get; set; } public Info ResponseData { get; set; } public class Info { public List LayerList { get; set; } } } }