jackfiled
a483ddc671
All checks were successful
Build blog docker image / Build-Blog-Image (push) Successful in 3m57s
Reviewed-on: #3
11 lines
250 B
C#
11 lines
250 B
C#
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; } = [];
|
|
}
|