using System; namespace FlowScope.Resources { public interface IResourceHandle : IDisposable where T : class { string Key { get; } T Asset { get; } bool IsDisposed { get; } } }