?? userpopedommodel.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace QSEDUNET.MODEL.BaseInfo
{
public class UserPopedomModel
{
//定義私有變量
private int m_UserPopedom_ID;
private string m_UserPopedom_Name;
private string m_UserPopedom_Msg;
//定義屬性
public int UserPopedom_ID
{
get { return m_UserPopedom_ID; }
set { m_UserPopedom_ID = value; }
}
public string UserPopedom_Name
{
get { return m_UserPopedom_Name; }
set { m_UserPopedom_Name = value; }
}
public string UserPopedom_Msg
{
get { return m_UserPopedom_Msg; }
set { m_UserPopedom_Msg = value; }
}
//構造函數
public UserPopedomModel()
{
this.m_UserPopedom_ID = 0;
this.m_UserPopedom_Name = "";
this.m_UserPopedom_Msg = "";
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -