ZhiYi/ZhiYi.Core.Application/Dtos/Server/ServerUpdationDto.cs

11 lines
236 B
C#

namespace ZhiYi.Core.Application.Dtos.Server
{
public class ServerUpdationDto : ServerCreationAndUpdationDto
{
/// <summary>
/// 服务器ID
/// </summary>
public long Id { get; set; }
}
}