master
1using System;
2
3namespace Notepad.Domain.FileSystem {
4    public interface IFilePath : IEquatable<IFilePath> {
5        string RawPathToFile();
6    }
7}