aboutsummaryrefslogtreecommitdiffstats
path: root/DiscordToXIV/Configuration.cs
blob: b4b763b7466984dfed6a83c84bc814a789eddfb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections.Generic;
using Dalamud.Configuration;
using Dalamud.Plugin;
using System;

namespace DiscordToXIV;

[Serializable]
public class Configuration : IPluginConfiguration
{
    public int Version { get; set; } = 0;
    public Dictionary<string, string> ChannelMappings { get; set; } = new Dictionary<string, string>();
    public bool HideUsernameWhenNicknameExists { get; set; } = false;

    public void Save()
    {
        Plugin.PluginInterface.SavePluginConfig(this);
    }
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage