website/lib/DB/Series.rakumod

16 lines
322 B
Raku
Raw Normal View History

2025-02-09 01:50:37 -05:00
use v6.e.PREVIEW;
use JSON::Class:auth<zef:vrurg>;
#| A plain markdown post
unit class Series is json(:pretty);
#| The title of a series
has Str:D $.title is required;
#| The description of a series
has Str:D $.desc is required;
#| The ids of the posts in the series, in series order
2025-02-09 02:12:14 -05:00
has Int:D @.post-ids is rw = [];