1
wxr
2023-03-31 7e42cc13a14b7de31c9f5d5c61cdf24f3246335d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Shared
{
    /// <summary>
    /// A3音乐播放状态
    /// </summary>
    [System.Serializable]
    public class A31PlayStatus
    {
        public string type = "0";
        public string ch = "0";
        public string mode = "0";
        public string loop = "0";
        public string status = "stop";
        public string curpos = "0";
        public string totlen = "0";
        public string Title = "Unkonw";
        public string Artist = "Unkonw";
        public string Album = "Unkonw";
        public string plicount = "0";
        public string plicurr = "0";
        public string vol = "0";
        public string Source = "0";
        public string TrackURL = "";
        public string playSource = "";
        public bool IsMute {
            get {
                return vol == "0";
            }
        }
    }
}