// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (c) 2006 Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Text; namespace Microsoft.Samples.RssPlatform.ScreenSaver.UI { /// /// A generealization of an item with a Description and Title. /// Any implmentation of IItem can be rendered using the ItemListView and ItemDescriptionView types. /// public interface IItem { string Description { get; } string Title { get; } } }