using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BackupAndImport.Entitys { public class RobotUpdateName { /// /// 原始昵称 /// public string nick { get; set; } /// /// 原始账号 /// public string name { get; set; } /// /// 新账号 /// public string newName { get; set; } } }