📄 addbuddyapplicationeventargs.cs
字号:
namespace Imps.Client.Core
{
using System;
public class AddBuddyApplicationEventArgs : EventArgs
{
private string _desc;
private bool _isByMobileNo;
private DateTime _time;
private string _uri;
public AddBuddyApplicationEventArgs(string uri, bool isByMobileNo, DateTime time, string desc)
{
this._uri = uri;
this._isByMobileNo = isByMobileNo;
this._time = time;
this._desc = desc;
}
public string Desc
{
get
{
return this._desc;
}
internal set
{
this._desc = value;
}
}
public bool IsByMobileNo
{
get
{
return this._isByMobileNo;
}
internal set
{
this._isByMobileNo = value;
}
}
public DateTime Time
{
get
{
return this._time;
}
internal set
{
this._time = value;
}
}
public string Uri
{
get
{
return this._uri;
}
internal set
{
this._uri = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -