using System; using System.Collections.Generic; using System.Text; /// Author: Leopoldo Lee Agdeppa III namespace NPanday.ProjectImporter.Parser.SlnParser.Model { public class GlobalSection { string name; public string Name { get { return name; } set { name = value; } } string value; public string Value { get { return this.value; } set { this.value = value; } } Dictionary map = new Dictionary(); public Dictionary Map { get { return map; } set { map = value; } } } }