namespace StitcherApi.Services.Utilities; public static class TileHelper { public static string GetTileFileName(int row, int col) { string rowStr = row < 26 ? ((char)('A' + row)).ToString() : "A" + ((char)('A' + (row - 26))); return $"{rowStr}{col + 1}.png"; } }