16 lines
307 B
C#
16 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace videoGather
|
|
{
|
|
internal class MsgInfo
|
|
{
|
|
public string code { get; set; }
|
|
public string data { get; set; }
|
|
public string msg { get; set; }
|
|
}
|
|
}
|