server-master/srcs/TranslationsServer/Loader/BannedNamesConfiguration.cs
2026-02-10 18:21:30 +01:00

9 lines
No EOL
184 B
C#

using System.Collections.Generic;
namespace TranslationServer.Loader
{
public class BannedNamesConfiguration
{
public List<string> BannedNames { get; set; }
}
}