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

11 lines
236 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Application.Dtos.Server
{
public class ServerUpdationDto : ServerCreationAndUpdationDto
{
/// <summary>
/// 服务器ID
/// </summary>
public long Id { get; set; }
}
}