mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-05 11:25:20 +08:00
16 lines
256 B
C#
16 lines
256 B
C#
using BetterGenshinImpact.Core.Config;
|
|
|
|
namespace BetterGenshinImpact.Service.Interface
|
|
{
|
|
public interface IConfigService
|
|
{
|
|
AllConfig Get();
|
|
|
|
void Save();
|
|
|
|
AllConfig Read();
|
|
|
|
void Write(AllConfig config);
|
|
}
|
|
}
|