using System;
using Chernobyl.Collections.Generic.Event;
namespace Chernobyl.Attribution
{
///
/// An interface for types which define where instances
/// (returned from static methods, created from types, etc.) are to be stored.
///
public interface IStorageAttribute
{
///
/// The container the instance(s) are to be stored.
///
IEventDictionary Container { get; }
}
}