summaryrefslogtreecommitdiff
path: root/src/Notepad/Domain/FileSystem/IFilePath.cs
blob: 094907a2b715618fa88e98c879f698892ed4ac78 (plain)
1
2
3
4
5
6
7
using System;

namespace Notepad.Domain.FileSystem {
    public interface IFilePath : IEquatable<IFilePath> {
        string RawPathToFile();
    }
}