smsrecvinfo.cs
来自「usb-com for sms 自己开发的类 可以借鉴下」· CS 代码 · 共 29 行
CS
29 行
using System;
namespace IPP.SMS
{
/// <summary>
/// Summary description for SMSRecvInfo.
/// </summary>
public class SMSRecvInfo
{
public SMSRecvInfo()
{
Init();
}
public int SysNo;
public string CellNumber;
public string SMSContent;
public DateTime SendTime;
public string index; //短消息在手机中的序号,删除的时候用的
public void Init()
{
SysNo = AppConst.IntNull;
CellNumber = AppConst.StringNull;
SMSContent = AppConst.StringNull;
SendTime = AppConst.DateTimeNull;
index = AppConst.StringNull;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?