old_flsystem/应用/BackupAndImport/Entitys/RobotUpdateName.cs

27 lines
546 B
C#
Raw Normal View History

2022-09-29 10:35:00 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BackupAndImport.Entitys
{
public class RobotUpdateName
{
/// <summary>
/// 原始昵称
/// </summary>
public string nick { get; set; }
/// <summary>
/// 原始账号
/// </summary>
public string name { get; set; }
/// <summary>
/// 新账号
/// </summary>
public string newName { get; set; }
}
}