using System; namespace Cryville.Crtr.Browsing { public interface IResourceDestination { bool CanImport(Uri uri); bool ImportFrom(Uri uri); } }