bloxstrap/Bloxstrap/Extensions/CustomThemeTemplateEx.cs
2025-03-11 11:21:07 +00:00

11 lines
250 B
C#

namespace Bloxstrap.Extensions
{
static class CustomThemeTemplateEx
{
public static string GetFileName(this CustomThemeTemplate template)
{
return $"CustomBootstrapperTemplate_{template}.xml";
}
}
}