using Intromat.ViewModels; namespace Intromat.Interfaces { public interface IFile { bool IsDirty { get; set; } string FullPath { get; } string Name { get; set; } } }