mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-06 17:53:17 +08:00
17 lines
323 B
C#
17 lines
323 B
C#
using CRSim.Core.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRSim.Core.Abstractions
|
|
{
|
|
public interface ISettingsService
|
|
{
|
|
void LoadSettings();
|
|
void SaveSettings();
|
|
Settings GetSettings();
|
|
}
|
|
}
|