Mir_Error.cs
456 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceLibrary
{
public class Mir_Error
{
public int code { get; set; }
public string description { get; set; }
public string module { get; set; }
public override string ToString()
{
return $"code={code},description={description},module={module}";
}
}
}