Cleanup
This commit is contained in:
17
src/Core/FileTime.Core/Models/AbsolutePath.cs
Normal file
17
src/Core/FileTime.Core/Models/AbsolutePath.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using FileTime.Core.Providers;
|
||||
|
||||
namespace FileTime.Core.Models
|
||||
{
|
||||
public class AbsolutePath : IAbsolutePath
|
||||
{
|
||||
public IContentProvider ContentProvider { get; }
|
||||
|
||||
public string Path { get; }
|
||||
|
||||
public AbsolutePath(IContentProvider contentProvider, string path)
|
||||
{
|
||||
ContentProvider = contentProvider;
|
||||
Path = path;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user