📄 systemmessage.cs
字号:
namespace Imps.Client.Pc
{
using System;
public class SystemMessage
{
public string _content;
public string _expireTime;
public string _id;
public string _link;
public bool _readok;
public SystemMessage(string id, string content, string link, string exprieTime)
{
this._id = id;
this._content = content;
this._link = link;
this._readok = false;
this._expireTime = exprieTime;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -