This repository has been archived on 2023-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
Sic02/FrameworkLocal/UIClient/Caliburn.Micro/Core/IHaveActiveItem.cs

12 lines
303 B
C#

namespace Caliburn.Micro.Core {
/// <summary>
/// Denotes an instance which maintains an active item.
/// </summary>
public interface IHaveActiveItem {
/// <summary>
/// The currently active item.
/// </summary>
object ActiveItem { get; set; }
}
}