// Section.cs created with MonoDevelop // User: chadk at 3:04 PMĀ 12/23/2007 // // To change standard headers go to Edit->Preferences->Coding->Standard Headers // using System; namespace Lunar { public class Section { private const string ZLOCAL_DIRECTORY_NAME = "zlocal"; private string mName; private string mLocation; public string Name { get { return this.mName; } } public string Location { get { return this.mLocation; } } public bool IsZLocal { get { return this.mName.Equals(ZLOCAL_DIRECTORY_NAME); } } internal System.IO.DirectoryInfo DirectoryInfo { get { return new System.IO.DirectoryInfo(this.mLocation); } } public Section(string name, string location) { this.mName = name; this.mLocation = location; } } }