public
Fork of olsonjeffery/boolangstudio
Description: Boo language integration for Visual Studio 2008
Homepage: http://www.codeplex.com/BooLangStudio
Clone URL: git://github.com/jagregory/boolangstudio.git
100644 8 lines (8 sloc) 0.174 kb
1
2
3
4
5
6
7
8
namespace Boo.BooLangService.StringParsing
{
    public class BracketPair
    {
        public int LeftIndex { get; set; }
        public int RightIndex { get; set; }
    }
}