mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 21:57:22 +01:00
14 lines
No EOL
373 B
C#
14 lines
No EOL
373 B
C#
using MareSynchronos.MareConfiguration.Configurations;
|
|
|
|
namespace MareSynchronos.MareConfiguration;
|
|
|
|
public class NotesConfigService : ConfigurationServiceBase<UidNotesConfig>
|
|
{
|
|
public const string ConfigName = "notes.json";
|
|
|
|
public NotesConfigService(string configDir) : base(configDir)
|
|
{
|
|
}
|
|
|
|
public override string ConfigurationName => ConfigName;
|
|
} |