MailContact.cs
资源名称:GetFriend.rar [点击查看]
上传用户:asz878
上传日期:2020-04-01
资源大小:189k
文件大小:1k
源码类别:
WEB邮件程序
开发平台:
Visual C++
- /*
- * 作者:方宏俊
- * 日期:2008-10-23
- * 描述:邮件实体类
- * * */
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Fhz.Msn.OpenContactsNet
- {
- /// <summary>
- /// 邮件实体类
- /// </summary>
- public class MailContact
- {
- private string _email = string.Empty;
- private string _name = string.Empty;
- public string Name
- {
- get { return _name; }
- set { _name = value; }
- }
- public string Email
- {
- get { return _email; }
- set { _email = value; }
- }
- }
- }