⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usersinfo.cs

📁 一个即时通信工具
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

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

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

        private string _LoginPwd;
        public string LoginPwd
        {
            get { return this._LoginPwd; }
            set { this._LoginPwd = value; }
        }

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

        private string _NickName;
        public string NickName
        {
            get { return this._NickName; }
            set { this._NickName = value; }
        }

        private int _FaceId;
        public int FaceId
        {
            get { return this._FaceId; }
            set { this._FaceId = value; }
        }

        private string _Sex;
        public string Sex
        {
            get { return this._Sex; }
            set { this._Sex = value; }
        }

        private int _Age;
        public int Age
        {
            get { return this._Age; }
            set { this._Age = value; }
        }

        private string _Name;
        public string Name
        {
            get { return this._Name; }
            set { this._Name = value; }
        }

        private StarInfo _Star;
        public StarInfo Star
        {
            get { return this._Star; }
            set { this._Star = value; }
        }

        private BloodTypeInfo _BloodType;
        public BloodTypeInfo BloodType
        {
            get { return this._BloodType; }
            set { this._BloodType = value; }
        }

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

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

       
    }
}

⌨️ 快捷键说明

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