made_core/ports/artifact/
artifact_page.rs1use crate::value_objects::ArtifactId;
2
3use super::ArtifactRecord;
4
5#[derive(Debug, Clone, PartialEq, Eq)]
7pub struct ArtifactPage {
8 pub items: Vec<ArtifactRecord>,
9 pub next_after: Option<ArtifactId>,
10}