9 lines
189 B
C#
9 lines
189 B
C#
|
|
using CloudPrint.Client.Models;
|
||
|
|
|
||
|
|
namespace CloudPrint.Client.Services.Abstractions;
|
||
|
|
|
||
|
|
public interface ISettingsService
|
||
|
|
{
|
||
|
|
ClientSettings Load();
|
||
|
|
void Save(ClientSettings settings);
|
||
|
|
}
|