Merge branch 'master' of https://code.grnet.gr/git/pithos-ms-client
[pithos-ms-client] / trunk / Pithos.Client.WPF / FileEntry.cs
1 using System.IO;
2
3 namespace Pithos.Client.WPF
4 {
5     public class FileEntry
6     {
7         public string FileName { get; set; }
8         private string _fullPath;
9         public string FullPath
10         {
11             get { return _fullPath; }
12             set
13             {
14                 _fullPath = value;
15                 FileName = Path.GetFileName(value);
16             }
17         }
18     }
19 }