20 lines
568 B
C#
20 lines
568 B
C#
|
using RodionovLibrary.NonVisualComponents.HelperEnums;
|
|||
|
|
|||
|
namespace RodionovLibrary.NonVisualComponents.HelperModels
|
|||
|
{
|
|||
|
public class WordDiagramInfo
|
|||
|
{
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string DocumentTitle { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string DiagramTitle { get; set; } = string.Empty;
|
|||
|
|
|||
|
public DiagramLegendLayout LegendLayout { get; set; }
|
|||
|
|
|||
|
public List<string> CategoriesX { get; set; } = new();
|
|||
|
|
|||
|
public List<SeriesParameters> SeriesParameters { get; set; } = new();
|
|||
|
}
|
|||
|
}
|