friendshippolicyinfo.cs

来自「一个即时通信工具」· CS 代码 · 共 39 行

CS
39
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace Model
{
    /// <summary>
    /// FriendshipPolicyInfo类 
    /// </summary>
    public class FriendshipPolicyInfo
    {

        private int _Id;
        public int Id
        {
            get { return this._Id; }
            set { this._Id = value; }
        }

        private string _FriendshipPolicy;
        public string FriendshipPolicy
        {
            get { return this._FriendshipPolicy; }
            set { this._FriendshipPolicy = value; }
        }

        public FriendshipPolicyInfo()
        {
            // TO DO CODE:
        }

        public FriendshipPolicyInfo(int id)
        {
            _Id = id;
        }

    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?