blob: 175fc5509b2ca470f8bdd13fc70500fb41b496ba (
plain)
1
2
3
4
5
6
|
package no.eliashaugsbakk.clams.server.model;
import java.time.Instant;
public record PostMetaData(String title, String slug, String summary, Instant timePublished, Instant lastEdit, Boolean isPublished) {
}
|