usersinfo.cs

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

CS
96
字号
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 + =
减小字号Ctrl + -
显示快捷键?