using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLocal.Common { public static class UBBParser { public static string UBBToIntermediate(string UBB) { return UBB; } public static string ShallerToUBB(string shaller) { return shaller; } } }