using Beam.Models;
namespace Beam.Models {
public record class TableOfContentsData : ArticleData {
///
/// The link collection of the actual content
///
public string[]? ContentLinks { get; set; }
///
/// The link collection of all the Table Of Content pages for this specific resource.
///
public string[]? PagesLinks { get; set; }
}
}