mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
13 lines
340 B
C#
13 lines
340 B
C#
using System.Collections.Generic;
|
|
using DiscordChatExporter.Models;
|
|
|
|
namespace DiscordChatExporter.ViewModels
|
|
{
|
|
public interface ISettingsViewModel
|
|
{
|
|
IReadOnlyList<Theme> AvailableThemes { get; }
|
|
Theme Theme { get; set; }
|
|
string DateFormat { get; set; }
|
|
int MessageGroupLimit { get; set; }
|
|
}
|
|
} |