mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
17 lines
383 B
C#
17 lines
383 B
C#
using DiscordChatExporter.Models;
|
|
|
|
namespace DiscordChatExporter.Services
|
|
{
|
|
public interface ISettingsService
|
|
{
|
|
Theme Theme { get; set; }
|
|
string DateFormat { get; set; }
|
|
int MessageGroupLimit { get; set; }
|
|
|
|
string LastToken { get; set; }
|
|
ExportFormat LastExportFormat { get; set; }
|
|
|
|
void Load();
|
|
void Save();
|
|
}
|
|
} |