using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Beam.Temporary.Cli {
public record class TableOfContentsData : ArticleData {
///
/// The link collection of the actual content
///
public SourceLink[]? ContentLinks { get; set; }
///
/// The link collection of all the Table Of Content pages for this specific resource.
///
public SourceLink[]? PagesLinks { get; set; }
}
}