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

📄 entry.cs

📁 BugNET is an issue tracking and project issue management solution built using the ASP.NET web applic
💻 CS
字号:
using System;
using System.Collections;
using System.Text;
using BugNET.BusinessLogicLayer;

namespace BugNET.POP3Reader
{
	/// <summary>
	/// Summary description for Entry.
	/// </summary>
	public class Entry
	{
        /// <summary>
        /// Initializes a new instance of the <see cref="Entry"/> class.
        /// </summary>
		public Entry()
		{
			//
			// TODO: Add constructor logic here
			//
		}

        /// <summary>
        /// 
        /// </summary>
		public StringBuilder Content = new StringBuilder();
        /// <summary>
        /// 
        /// </summary>
		public DateTime Date;
        /// <summary>
        /// 
        /// </summary>
		public string Title;
        /// <summary>
        /// 
        /// </summary>
		public string From;
        /// <summary>
        /// 
        /// </summary>
		public ProjectMailbox ProjectMailbox;
        /// <summary>
        /// 
        /// </summary>
		public ArrayList MailAttachments = new ArrayList();
		/// <summary>
		/// 
		/// </summary>
        public ArrayList AttachmentFileNames = new ArrayList();
	}
}

⌨️ 快捷键说明

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