Browse Subversion Repository
Contents of /trunk/Somali/Models/OutlineModel.cs
Parent Directory
| Revision Log
Revision 95 -
( show annotations)
( download)
Sun Nov 28 06:24:47 2010 UTC
(13 years, 5 months ago)
by juan
File size: 413 byte(s)
mod ExplorerForm with able to open dirTree
| 1 |
using System; |
| 2 |
using System.Collections.Generic; |
| 3 |
using System.Linq; |
| 4 |
using System.Text; |
| 5 |
|
| 6 |
namespace Somali.Models |
| 7 |
{ |
| 8 |
class OutlineModel : Somali.Base.Model |
| 9 |
{ |
| 10 |
private Dictionary<string, int> _outlineMap = null; |
| 11 |
public Dictionary<string, int> OutlineMap |
| 12 |
{ |
| 13 |
get { return this._outlineMap; } |
| 14 |
set { this._outlineMap = value; } |
| 15 |
} |
| 16 |
|
| 17 |
} |
| 18 |
} |
|