Cosmos/source/Cosmos.Kernel.LogViewer/Overview/OverviewItem.cs
2007-11-14 14:16:34 +00:00

30 lines
No EOL
603 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
namespace Cosmos.Kernel.LogViewer.Overview {
public class OverviewItem {
public OverviewItem(Control aDisplayControl, string aDisplayName, string aDescription) {
DisplayControl = aDisplayControl;
DisplayName = aDisplayName;
Description = aDescription;
}
public Control DisplayControl {
get;
private set;
}
public string DisplayName {
get;
private set;
}
public string Description {
get;
private set;
}
}
}