systemmessage.cs
来自「飞信的收发使用csharp进行开发」· CS 代码 · 共 24 行
CS
24 行
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 + =
减小字号Ctrl + -
显示快捷键?