?? 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;
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -