?? comment.cs
字號:
using System;
namespace Common.Entities
{
public class Comment
{
private int commentID;
private int article;
private string name;
private string content;
private DateTime dateTimes;
//使用一個其它的對象,非數據庫表
private string title;
public string Title
{
get { return title; }
set { title = value; }
}
public DateTime DateTimes
{
get { return dateTimes; }
set { dateTimes = value; }
}
public string Content
{
get { return content; }
set { content = value; }
}
public string Name
{
get { return name; }
set { name = value; }
}
public int Article
{
get { return article; }
set { article = value; }
}
public int CommentID
{
get { return commentID; }
set { commentID = value; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -