mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-22 21:59:55 +08:00
21 lines
372 B
C#
21 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BetterGenshinImpact.Core.Config;
|
|
|
|
namespace BetterGenshinImpact.Service.Interface
|
|
{
|
|
public interface IConfigService
|
|
{
|
|
AllConfig Get();
|
|
|
|
void Save();
|
|
|
|
AllConfig Read();
|
|
|
|
void Write(AllConfig config);
|
|
}
|
|
}
|