14 lines
266 B
C#
14 lines
266 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.Research.DynamicDataDisplay
|
|
{
|
|
public sealed class LineAndMarker<T>
|
|
{
|
|
public LineGraph LineGraph { get; set; }
|
|
public T MarkerGraph { get; set; }
|
|
}
|
|
}
|