mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
11 lines
250 B
C#
11 lines
250 B
C#
namespace Bloxstrap.Extensions
|
|
{
|
|
static class CustomThemeTemplateEx
|
|
{
|
|
public static string GetFileName(this CustomThemeTemplate template)
|
|
{
|
|
return $"CustomBootstrapperTemplate_{template}.xml";
|
|
}
|
|
}
|
|
}
|