mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 09:25:42 -04:00
14 lines
213 B
C#
14 lines
213 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LibEveryFileExplorer.Files
|
|
{
|
|
public interface IViewable
|
|
{
|
|
Form GetDialog();
|
|
}
|
|
}
|