ZigbeeApp/Shared/Phone/SmartSound/SmartSoundDataInfo.cs
New file @@ -0,0 +1,21 @@ 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<SmartSound.Layer> LayerList { get; set; } } } }