80 lines
2.7 KiB
C#
80 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Model
|
|
{
|
|
|
|
|
|
public class SyncCustomerDto
|
|
{
|
|
public int id { get; set; }
|
|
public string owner { get; set; }
|
|
public string name { get; set; }
|
|
public DateTime createdTime { get; set; }
|
|
public string organization { get; set; }
|
|
public string clientIp { get; set; }
|
|
public string user { get; set; }
|
|
public string method { get; set; }
|
|
public string requestUri { get; set; }
|
|
public string action { get; set; }
|
|
public bool isTriggered { get; set; }
|
|
public string _object { get; set; }
|
|
public Extendeduser extendedUser { get; set; }
|
|
}
|
|
|
|
public class Extendeduser
|
|
{
|
|
public string owner { get; set; }
|
|
public string name { get; set; }
|
|
public DateTime createdTime { get; set; }
|
|
public string updatedTime { get; set; }
|
|
public string id { get; set; }
|
|
public string type { get; set; }
|
|
public string password { get; set; }
|
|
public string passwordSalt { get; set; }
|
|
public string displayName { get; set; }
|
|
public string avatar { get; set; }
|
|
public string permanentAvatar { get; set; }
|
|
public string email { get; set; }
|
|
public string phone { get; set; }
|
|
public string location { get; set; }
|
|
public object address { get; set; }
|
|
public string affiliation { get; set; }
|
|
public string title { get; set; }
|
|
public int score { get; set; }
|
|
public int ranking { get; set; }
|
|
public bool isOnline { get; set; }
|
|
public bool isAdmin { get; set; }
|
|
public bool isForbidden { get; set; }
|
|
public bool isDeleted { get; set; }
|
|
public string signupApplication { get; set; }
|
|
public Properties properties { get; set; }
|
|
}
|
|
|
|
public class Properties
|
|
{
|
|
public string bio { get; set; }
|
|
public string checkinDate { get; set; }
|
|
public string editorType { get; set; }
|
|
public DateTime emailVerifiedTime { get; set; }
|
|
public string fileQuota { get; set; }
|
|
public string location { get; set; }
|
|
public string no { get; set; }
|
|
public string oauth_QQ_displayName { get; set; }
|
|
public string oauth_QQ_verifiedTime { get; set; }
|
|
public string oauth_WeChat_displayName { get; set; }
|
|
public string oauth_WeChat_verifiedTime { get; set; }
|
|
public string onlineStatus { get; set; }
|
|
public string phoneVerifiedTime { get; set; }
|
|
public string renameQuota { get; set; }
|
|
public string tagline { get; set; }
|
|
public string website { get; set; }
|
|
}
|
|
|
|
|
|
}
|
|
|