MailContact.cs
上传用户:asz878
上传日期:2020-04-01
资源大小:189k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

Visual C++

  1. /*
  2.  * 作者:方宏俊
  3.  * 日期:2008-10-23
  4.  * 描述:邮件实体类
  5.  * *                  */
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Text;
  9. namespace Fhz.Msn.OpenContactsNet
  10. {
  11.     /// <summary>
  12.     ///  邮件实体类
  13.     /// </summary>
  14.     public class MailContact
  15.     {
  16.         private string _email = string.Empty;
  17.         private string _name = string.Empty;
  18.         public string Name
  19.         {
  20.             get { return _name; }
  21.             set { _name = value; }
  22.         }
  23.         public string Email
  24.         {
  25.             get { return _email; }
  26.             set { _email = value; }
  27.         }
  28.     }
  29. }