File size: 247 Bytes
fab29d7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
using System.Collections.Generic;

namespace VersOne.Epub.WpfDemo.WpfEnvironment
{
    internal class OpenFileDialogResult
    {
        public bool DialogResult { get; set; }
        public List<string> SelectedFilePaths { get; set; }
    }
}