Seenginx/Seenginx/Services/SystemDService.cs

24 lines
545 B
C#
Raw Normal View History

2020-04-12 20:01:46 +02:00
using Seenginx.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Seenginx.Services
{
public class SystemDService : ISystemDService
{
public async Task<IEnumerable<ConfigFile>> GetFiles(SystemDFilter filter = null)
{
2020-07-01 19:36:22 +02:00
await Task.Run(() => { });
2020-04-12 20:01:46 +02:00
return new List<ConfigFile>();
}
public async Task<IEnumerable<string>> GetLogMessages(SystemDLogsFilter filter = null)
{
2020-07-01 19:36:22 +02:00
await Task.Run(() => { });
2020-04-12 20:01:46 +02:00
return new List<string>();
}
}
}