namespace ZhiYi.Core.Application.Dtos.Server { public class ServerCreationAndUpdationDto { /// /// 当前操作人员账号ID /// public long UserId { get; set; } /// /// 组ID /// public long GroupId { get; set; } /// /// 服务器名称 /// public string ServerName { get; set; } /// /// ip地址 /// public string Ip { get; set; } /// /// 端口号 /// public string Port { get; set; } /// /// 账号 /// public string Account { get; set; } /// /// 密码 /// public string PassWord { get; set; } /// /// 备注 /// public string Memo { get; set; } } }