Files
2024-04-27 09:23:34 +02:00

17 lines
249 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenFlashChart
{
public class Title : ChartElement
{
public Title(string text)
{
base.Text = text;
}
}
}