mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
30 lines
No EOL
603 B
C#
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;
|
|
}
|
|
}
|
|
} |