namespace ZhiYi.Core.Application.Services
{
///
/// 服务器管理
///
public interface IServerAppService
{
///
/// 创建服务器
///
///
///
Task CreateAsync(ServerCreationDto input);
///
/// 更新服务器
///
///
Task UpdateAsync(ServerUpdationDto input);
///
/// 删除服务器
///
/// 组ID
///
Task DeleteAsync(ServerDeleteDto input);
///
/// 获取服务器列表
///
/// 组ID
///
Task>> GetListAsync(long groupid);
}
}