ServiceStack.Swift Range class issue

Hello,

I have a class called Range where T can be DateTime in C# and the generated code causes issues in Swift because Range already exists in Swift. I saw in the SwiftGenerator code that there is a TypeAliases dictionary and I was wondering if I can safely add a new item in it to rename the class in the generated code like so:

            if (!SwiftGenerator.TypeAliases.ContainsKey("Range"))
            {
                SwiftGenerator.TypeAliases.Add("Range`1",
                                               "Range2");
            }

TypeAlias does let you change the name of the Swift Type that’s generated.