整理代码,更改头像部分移动到我的信息中,服务器适配

This commit is contained in:
dathlin
2017-09-18 17:35:59 +08:00
parent 78c04eadfb
commit 57f5eb83a6
21 changed files with 1050 additions and 486 deletions

View File

@@ -65,11 +65,19 @@ namespace CommonLibrary
/// 上次登录系统的方式有winform版wpf版web版
/// </summary>
public string LastLoginWay { get; set; } = string.Empty;
/// <summary>
/// 小尺寸头像的MD5码
/// </summary>
public string SmallPortraitMD5 { get; set; } = string.Empty;
/// <summary>
/// 大尺寸头像的MD5码
/// </summary>
public string LargePortraitMD5 { get; set; } = string.Empty;
#endregion
#region Static Members
/// <summary>
/// 用于存储和传送的名称
/// </summary>
@@ -86,6 +94,14 @@ namespace CommonLibrary
/// 登录系统的唯一设备ID
/// </summary>
public static string DeviceUniqueID { get { return "DeviceUniqueID"; } }
/// <summary>
/// 小尺寸头像的MD5传送名称
/// </summary>
public static string SmallPortraitText { get { return "SmallPortrait"; } }
/// <summary>
/// 大尺寸头像的MD5传送名称
/// </summary>
public static string LargePortraitText { get { return "LargePortrait"; } }
#endregion