You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
565 B
23 lines
565 B
namespace CounsellorBL.BLStructure
|
|
{
|
|
/// <summary>
|
|
/// 類別名稱:MailAccountInfo
|
|
/// 類別說明:
|
|
/// 起始作者:
|
|
/// 起始日期:
|
|
/// 最新修改人:
|
|
/// 最新修改日:
|
|
/// </summary>
|
|
public class MailAccountInfo
|
|
{
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:EMail
|
|
/// </summary>
|
|
public string EMail { get; set; }
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:Name
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
}
|