mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
20 lines
612 B
C#
20 lines
612 B
C#
using DiscordChatExporter.Models;
|
|
using Tyrrrz.Settings;
|
|
|
|
namespace DiscordChatExporter.Services
|
|
{
|
|
public class SettingsService : SettingsManager, ISettingsService
|
|
{
|
|
public string Token { get; set; }
|
|
public Theme Theme { get; set; }
|
|
public string DateFormat { get; set; } = "dd-MMM-yy hh:mm";
|
|
public int MessageGroupLimit { get; set; } = 20;
|
|
|
|
public SettingsService()
|
|
{
|
|
Configuration.StorageSpace = StorageSpace.Instance;
|
|
Configuration.SubDirectoryPath = "";
|
|
Configuration.FileName = "Settings.dat";
|
|
}
|
|
}
|
|
} |