25 lines
463 B
C#
25 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Voile.Patchouli.Data;
|
|
|
|
namespace Voile.Persistence
|
|
{
|
|
internal class DirectoryStorage : IVoileObjectStorage, IVoileDataStorage
|
|
{
|
|
public DirectoryStorage(DirectoryInfo directory)
|
|
{
|
|
Directory = directory;
|
|
}
|
|
|
|
public DirectoryInfo Directory { get; }
|
|
|
|
public Exception Ping()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|