mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-07-21 04:56:19 +02:00
d7345e91d3
Closes #11
16 lines
349 B
C#
16 lines
349 B
C#
using DiscordChatExporter.Models;
|
|
|
|
namespace DiscordChatExporter.Services
|
|
{
|
|
public interface ISettingsService
|
|
{
|
|
string DateFormat { get; set; }
|
|
int MessageGroupLimit { get; set; }
|
|
|
|
string LastToken { get; set; }
|
|
ExportFormat LastExportFormat { get; set; }
|
|
|
|
void Load();
|
|
void Save();
|
|
}
|
|
} |