using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Application.Contracts.Sync { public class SyncLifePayUser { public Guid Id { get; set; } public string PhoneNumber { get; set; } public string OpenId { get; set; } public DateTime? LastLoginTime { get; set; } public DateTime? CreationTime { get; set; } public Guid? CreatorId { get; set; } public DateTime? LastModificationTime { get; set; } public Guid? LastModifierId { get; set; } public bool? IsDeleted { get; set; } public Guid? DeleterId { get; set; } public DateTime? DeletionTime { get; set; } public string UnionId { get; set; } public string CreationChannleNum { get; set; } public string LastLoginChannleNum { get; set; } public string Name { get; set; } } }