15 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Reports.Common
{
public abstract class ReportSection
{
public virtual string Title { get { return "dummy section"; } }
public abstract void Render();
}
}