YaeBlog/YaeBlog.Core/Models/BlogHeadline.cs

11 lines
250 B
C#
Raw Permalink Normal View History

namespace YaeBlog.Core.Models;
public class BlogHeadline(string title, string selectorId)
{
public string Title { get; } = title;
public string SelectorId { get; set; } = selectorId;
public List<BlogHeadline> Children { get; } = [];
}