Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Services / Events.cs @ c53aa229

History | View | Annotate | Download (293 Bytes)

1
namespace Pithos.Client.WPF.Services
2
{
3
    public class ShowFilePropertiesEvent
4
    {
5
        public string FileName { get; set; }
6

    
7
        public ShowFilePropertiesEvent(){}
8

    
9
        public ShowFilePropertiesEvent(string fileName)
10
        {
11
            FileName = fileName;
12
        }
13

    
14
    }
15
}