userconversationpaireventargs.cs
来自「该源代码用 C# 写成」· CS 代码 · 共 30 行
CS
30 行
using System;
using Org.InteliIM.Activities.Conversations;
namespace Org.InteliIM.Users
{
public class UserConversationPairEventArgs : EventArgs
{
public UserConversationPairEventArgs(string user, Conversation conversation)
{
this.User = user;
this.Conversation = conversation;
}
private string user;
public string User
{
get { return this.user; }
set { this.user = value; }
}
private Conversation conversation;
public Conversation Conversation
{
get { return this.conversation; }
set { this.conversation = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?