mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
14 lines
282 B
C#
14 lines
282 B
C#
using DiscordChatExporter.Models;
|
|
|
|
namespace DiscordChatExporter.Services
|
|
{
|
|
public interface ISettingsService
|
|
{
|
|
string Token { get; set; }
|
|
Theme Theme { get; set; }
|
|
string DateFormat { get; set; }
|
|
|
|
void Load();
|
|
void Save();
|
|
}
|
|
} |