From 36dce512ac59b521b436c1c46805c25b2fe179f0 Mon Sep 17 00:00:00 2001 From: morkt Date: Sat, 2 Aug 2014 10:01:56 +0400 Subject: [PATCH] added public properties desctiptions. --- App.xaml.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/App.xaml.cs b/App.xaml.cs index db182dcf..d6f8c48c 100644 --- a/App.xaml.cs +++ b/App.xaml.cs @@ -44,8 +44,19 @@ namespace GARbro.GUI public static string Name { get { return "GARbro"; } } + /// + /// Initial browsing directory. + /// public string InitPath { get; private set; } + + /// + /// Path to the currently open archive, or empty string if none. + /// public string CurrentPath { get; private set; } + + /// + /// Archive file being browsed, or null. + /// public ArcFile CurrentArchive { get; private set; } void ApplicationStartup (object sender, StartupEventArgs e)