xm
2020-12-14 d6fb0646531172f23648441c224cdcccd721b894
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; }
        }
    }
}