namespace DaggerFramework { public abstract class Resource : IDisposable { public string Path { get; set; } public void Dispose() { } } }