Remotely/Desktop.Core/Interfaces/IConfigService.cs

16 lines
327 B
C#

using Remotely.Shared.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely.Desktop.Core.Interfaces
{
public interface IConfigService
{
DesktopAppConfig GetConfig();
void Save(DesktopAppConfig config);
}
}