15 lines
322 B
Raku
15 lines
322 B
Raku
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
|
|
has Int:D @.post-ids is rw = [];
|