📄 profileretrivedeventargs.cs
字号:
namespace Imps.Client.Core
{
using Imps.Common;
using System;
public class ProfileRetrivedEventArgs : HttpAppEventArgs
{
private DateTime? _BirthDate = null;
private bool _birthDateValid;
private Imps.Common.BloodType _BloodType;
private string _Company = string.Empty;
private string _CompanyWebsite = string.Empty;
private Imps.Common.Gender _Gender = Imps.Common.Gender.Male;
private string _HomePhone = string.Empty;
private string _JobTitle = string.Empty;
private string _MoodPhrase = string.Empty;
private string _Name = string.Empty;
private string _Nickname = string.Empty;
private string _Notes = string.Empty;
private string _OtherEmail = string.Empty;
private string _OtherPhone = string.Empty;
private string _PersonalEmail = string.Empty;
private string _PortraitCrc = string.Empty;
private EmailUseType _PrimaryEmail = EmailUseType.PersonalEmail;
private string _WorkEmail = string.Empty;
private string _WorkPhone = string.Empty;
public DateTime? BirthDate
{
get
{
return this._BirthDate;
}
set
{
this._BirthDate = value;
}
}
public bool BirthDateValid
{
get
{
return this._birthDateValid;
}
set
{
this._birthDateValid = value;
}
}
public Imps.Common.BloodType BloodType
{
get
{
return this._BloodType;
}
set
{
this._BloodType = value;
}
}
public string Company
{
get
{
return this._Company;
}
set
{
this._Company = value;
}
}
public string CompanyWebsite
{
get
{
return this._CompanyWebsite;
}
set
{
this._CompanyWebsite = value;
}
}
public Imps.Common.Gender Gender
{
get
{
return this._Gender;
}
set
{
this._Gender = value;
}
}
public string HomePhone
{
get
{
return this._HomePhone;
}
set
{
this._HomePhone = value;
}
}
public string JobTitle
{
get
{
return this._JobTitle;
}
set
{
this._JobTitle = value;
}
}
public string MoodPhrase
{
get
{
return this._MoodPhrase;
}
set
{
this._MoodPhrase = value;
}
}
public string Name
{
get
{
return this._Name;
}
set
{
this._Name = value;
}
}
public string Nickname
{
get
{
return this._Nickname;
}
set
{
this._Nickname = value;
}
}
public string Notes
{
get
{
return this._Notes;
}
set
{
this._Notes = value;
}
}
public string OtherEmail
{
get
{
return this._OtherEmail;
}
set
{
this._OtherEmail = value;
}
}
public string OtherPhone
{
get
{
return this._OtherPhone;
}
set
{
this._OtherPhone = value;
}
}
public string PersonalEmail
{
get
{
return this._PersonalEmail;
}
set
{
this._PersonalEmail = value;
}
}
public string PortraitCrc
{
get
{
return this._PortraitCrc;
}
set
{
this._PortraitCrc = value;
}
}
public EmailUseType PrimaryEmail
{
get
{
return this._PrimaryEmail;
}
set
{
this._PrimaryEmail = value;
}
}
public string WorkEmail
{
get
{
return this._WorkEmail;
}
set
{
this._WorkEmail = value;
}
}
public string WorkPhone
{
get
{
return this._WorkPhone;
}
set
{
this._WorkPhone = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -