| 10 | struct FileInfoViewModel : FileInfoViewModelT<FileInfoViewModel>, PropertyChangeHelper<FileInfoViewModel> |
| 11 | { |
| 12 | FileInfoViewModel(winrt::hstring path) : m_fileTime{ path }, m_path { ToBackslash(path) } |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | winrt::hstring Path() { return m_path; } |
| 17 | winrt::hstring Filename(); |
nothing calls this directly
no test coverage detected