video/MsgInfo.cs

16 lines
307 B
C#
Raw Permalink Normal View History

2024-12-11 19:48:43 +08:00
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; }
}
}