10 lines
179 B
C#
10 lines
179 B
C#
using Apimanager_backend.Dtos;
|
|
|
|
namespace Apimanager_backend.Services
|
|
{
|
|
public interface ISystemInfoService
|
|
{
|
|
Task<SystemInfoDto> GetSystemInfoAsync();
|
|
}
|
|
}
|