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

24 lines
497 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Application.Dtos.Server
{
/// <summary>
/// 服务器删除定义
/// </summary>
public class ServerDeleteDto
{
/// <summary>
/// 组ID
/// </summary>
public long GroupId { get; set; }
/// <summary>
/// 服务器ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 操作人员账号ID
/// </summary>
public long UserId { get; set; }
}
}