📄 friendsinfo.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
/// <summary>
/// FriendsInfo类
/// </summary>
public class FriendsInfo
{
private int _Id;
public int Id
{
get { return this._Id; }
set { this._Id = value; }
}
private UsersInfo _Host;
public UsersInfo Host
{
get { return this._Host; }
set { this._Host = value; }
}
private UsersInfo _Friend;
public UsersInfo Friend
{
get { return this._Friend; }
set { this._Friend = value; }
}
public FriendsInfo()
{
// TO DO CODE:
}
public FriendsInfo(int id)
{
_Id = id;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -